netbeans
Apache NetBeans 24
Apache NetBeans는 오픈 소스 개발 환경, 도구 플랫폼 및 애플리케이션 프레임워크입니다.
기본 release
구성을 빌드합니다(cluster.config 속성 참조).
$ ant build
기본 프로젝트(주로 Java 기능)를 빌드합니다.
$ ant -Dcluster.config=basic build
전체 프로젝트를 빌드합니다(릴리스에 없는 클러스터가 포함될 수 있음).
$ ant -Dcluster.config=full build
NetBeans 플랫폼 구축:
$ ant -Dcluster.config=platform build
대청소:
$ ant -q clean
php
, enterprise
등을 사용할 수도 있습니다. Cluster.properties 파일을 참조하세요.javadoc을 빌드합니다:
$ ant build javadoc
참고 Netbeans에서 javadoc-nb
작업을 실행하면 javadoc 빌드를 실행하고 웹 브라우저에 표시할 수 있습니다.
빌드를 실행합니다.
$ ant tryme
참고: nbbuild/netbeans에서 빌드 프로세스로 생성된 NetBeans 설치를 찾아보세요.
netbeans/etc/netbeans.conf
Help -> About
참조하세요.Help -> About
참조하세요.View -> IDE Log
통해 검사할 수 있음):$DEFAULT_USERDIR_ROOT/var/log/messages.log
참고: 사용자 설정 디렉터리를 제거/변경하면 NetBeans가 첫 번째 실행 기본값으로 재설정됩니다.
이 저장소에 있는 코드의 출처는 Apache 존재보다 오래되었습니다. 따라서 기록의 중요한 부분(코드가 Apache에 기증되기 전)은 독립적인 저장소에 보관됩니다. 코드를 완전히 이해하려면 최신 버전과 고대 버전을 함께 병합할 수 있습니다.
$ git clone https://github.com/apache/netbeans.git
$ cd netbeans
$ git log platform/uihandler/arch.xml
이렇게 하면 초기 체크인 및 Apache에 대한 파일 헤더 변경을 포함하여 몇 가지 로그 항목만 제공됩니다. 그런데 마법이 일어납니다.
$ git remote add emilian https://github.com/emilianbold/netbeans-releases.git
$ git fetch emilian # this takes a while, the history is huge!
$ git replace 6daa72c98 32042637 # the 1st donation
$ git replace 6035076ee 32042637 # the 2nd donation
로그를 검색하거나 비난 도구를 사용하면 전체 기록을 사용할 수 있습니다.
$ git log platform/uihandler/arch.xml
$ git blame platform/uihandler/arch.xml
고대 역사를 Git 저장소로 변환하고 마법을 가능하게 해준 Emilian Bold에게 많은 감사를 드립니다!