Build the default release
config (See the cluster.config property.)
$ ant build
Build the basic project (mainly Java features):
$ ant -Dcluster.config=basic build
Build the full project (may include clusters which are not be in the release):
$ ant -Dcluster.config=full build
Build the NetBeans Platform:
$ ant -Dcluster.config=platform build
Cleanup:
$ git clean -Xdf
php
, enterprise
, etc. See the cluster.properties file.nbbuild
directory should contain the portable NetBeans zipBuild javadoc:
$ ant javadoc
export ANT_OPTS=-Djdk.xml.totalEntitySizeLimit=200000
javadoc-nb
task in Netbeans to run the javadoc build and display it in a web browser.Quick test run:
$ ant tryme
or run the portable zip distribution:
nbbuild
to a directory other than nbbuild
netbeans
launcher found in netbeans/bin
, optionally specifying a custom userdirexample:
$ netbeans --userdir /tmp/nbtestdir1
--jdkhome <path> path to JDK used as runtime (and default JDK for projects) --userdir <path> use specified directory to store user settings --cachedir <path> use specified directory to store user cache, must be different from userdir --fontsize <size> set the base font size of the user interface, in points -J<jvm_option> pass <jvm_option> to JVM --help list more options
netbeans/etc/netbeans.conf
Help -> About
for concrete locationHelp -> About
for concrete locationView -> IDE Log
):$DEFAULT_USERDIR_ROOT/var/log/messages.log
Note: removing/changing the user settings directory will reset NetBeans to first launch defaults
The origins of the code in this repository are older than its Apache existence. As such significant part of the history (before the code was donated to Apache) is kept in an independent repository. To fully understand the code you may want to merge the modern and ancient versions together:
$ git clone https://github.com/apache/netbeans.git $ cd netbeans $ git log platform/uihandler/arch.xml
This gives you just few log entries including the initial checkin and change of the file headers to Apache. But then the magic comes:
$ 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
When you search the log, or use the blame tool, the full history is available:
$ git log platform/uihandler/arch.xml $ git blame platform/uihandler/arch.xml
Many thanks to Emilian Bold who converted the ancient history to his Git repository and made the magic possible!