Showing posts with label netbeans. Show all posts
Showing posts with label netbeans. Show all posts

Thursday, February 10, 2011

Git support in Netbeans

To make Netbeans work with GIT as simple and comfortable as with Mercurial or SVN use nbgit.

Tuesday, September 14, 2010

Default UTF-8 for all files

In <Netbeans install dir>/etc/netbeans.conf file add to netbeans_default_options parameter
-J-Dfile.encoding=UTF-8

Saturday, September 26, 2009

Optimize and speed up Netbeans

In /etc/netbeans.conf set netbeans_default_options to
-J-client -J-Xms32m -J-Xmx512m -J-XX:PermSize=32m -J-XX:MaxPermSize=200m -J-Xverify:none -J-XX:CompileThreshold=100 -XX:+CompressedOOPS -XX:+AggressiveOpts -XX:+TieredCompilation -XX:+DoEscapeAnalysis -XX:+UseConcMarkSweepGC -J-XX:+CMSClassUnloadingEnabled -J-XX:+CMSPermGenSweepingEnabled
So, we allow to use up to 512Mb RAM, compile to byte-code and optimize most of functions.