-
Notifications
You must be signed in to change notification settings - Fork 58
/
netbeans.conf
81 lines (79 loc) · 4.2 KB
/
netbeans.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Default locations of userdir and cachedir:
# (http://wiki.netbeans.org/FaqWhatIsUserdir)
#
# On Windows ${DEFAULT_USERDIR_ROOT} will be replaced by the launcher
# with "<AppData>\NetBeans" where <AppData> is user's
# value of "AppData" key in Windows Registry under
# "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders"
# and ${DEFAULT_CACHEDIR_ROOT} will be replaced by the launcher
# with "<Local AppData>\NetBeans\Cache" where <Local AppData> is user's
# value of "Local AppData" key in Windows Registry under
# "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders"
#
# On Mac ${DEFAULT_USERDIR_ROOT} will be replaced by the launcher
# with "~/Library/Application Support/NetBeans" and
# ${DEFAULT_CACHEDIR_ROOT} with "~/Library/Caches/NetBeans"
#
# On other systems ${DEFAULT_USERDIR_ROOT} will be replaced by the launcher
# with "~/.netbeans" and ${DEFAULT_CACHEDIR_ROOT} with "~/.cache/netbeans"
#
# You can also use ${HOME} variable which will be replaced with
# user.home JVM system property value. This variable is valid only in
# netbeans_default_userdir and netbeans_default_cachedir properties.
#
# NOTE: If you specify a non-default userdir path on command line
# (--userdir option) and don't specify a cachedir path (--cachedir option),
# cachedir will be in "<userdir>/var/cache".
#
# Cachedir must be different from userdir. The same cachedir and userdir
# would cause problems.
#
netbeans_default_userdir="${DEFAULT_USERDIR_ROOT}/dev"
netbeans_default_cachedir="${DEFAULT_CACHEDIR_ROOT}/dev"
# Options used by NetBeans launcher by default:
# (can be overridden by explicit command line switches)
#
# Note that default -Xmx is selected for you automatically.
# You can find these values in var/log/messages.log file in your userdir.
# The automatically selected value can be overridden by specifying -J-Xmx
# here or on the command line.
#
# If you specify the heap size explicitly, you may also want to enable
# Concurrent Mark & Sweep garbage collector.
# (see http://wiki.netbeans.org/FaqGCPauses)
#
#netbeans_default_options="-J-client -J-Xss2m -J-Xms32m -J-Dnetbeans.logger.console=true -J-ea -J-Dapple.laf.useScreenMenuBar=true -J-Dapple.awt.graphics.UseQuartz=true -J-Dsun.java2d.noddraw=true -J-Dsun.java2d.dpiaware=true -J-Dsun.zip.disableMemoryMapping=true -J-Dplugin.manager.check.updates=false -J-Dnetbeans.extbrowser.manual_chrome_plugin_install=yes"
#
netbeans_default_options="-J-client -J-ea -J-Xverify:none -J-d64 /
-J-Dsun.zip.disableMemoryMapping=true -J-Dnetbeans.logger.console=true /
-J-Xss2m -J-XX:MetaspaceSize=350m -J-XX:MaxMetaspaceSize=2048m -J-Xms32m -J-Xmx1024m /
-J-XX:+UseParallelOldGC -J-XX:ParallelGCThreads=4 /
-J-XX:+UseLargePages -J-XX:LargePageSizeInBytes=512m /
-J-XX:+PrintGCDetails -J-XX:+AggressiveOpts /
-J-XX:+UseStringCache -J-XX:+UseFastAccessorMethods /
-J-XX:+UnlockExperimentalVMOptions -J-XX:+UnlockDiagnosticVMOptions /
-J-XX:ReservedCodeCacheSize=256m -J-XX:+OptimizeStringConcat /
-J-XX:+UseSplitVerifier -J-XX:CompileThreshold=10000 /
-J-XX:+UseCompressedOops -J-XX:+UseAdaptiveSizePolicy /
-J-Dapple.laf.useScreenMenuBar=true -J-Dnetbeans.extbrowser.manual_chrome_plugin_install=yes /
-J-Dapple.awt.graphics.UseQuartz=true -J-Dsun.java2d.noddraw=true -J-Dsun.java2d.dpiaware=true /
-J-Dsun.java2d.opengl=true -J-Dsun.java2d.d3d=true -J-Dawt.nativeDoubleBuffering=false /
-J-Dswing.aatext=true -J-Dawt.useSystemAAFontSettings=lcd -J-Dorg.netbeans.editor.aa.fractional=true /
-J-Dorg.netbeans.editor.aa.fractional=true -J-Dorg.netbeans.editor.view.settings.level=FINE /
-J-Dorg.netbeans.editor.aa.text=hrgb /
-J-Dscala.home=/usr/local/opt/scala/libexec /
--fontsize 10 --locale nl_NL "
# Default location of JDK:
# (set by installer or commented out if launcher should decide)
#
# It can be overridden on command line by using --jdkhome <dir>
# Be careful when changing jdkhome.
# There are two NetBeans launchers for Windows (32-bit and 64-bit) and
# installer points to one of those in the NetBeans application shortcut
# based on the Java version selected at installation time.
#
#netbeans_jdkhome="/path/to/jdk"
# Additional module clusters:
# using ${path.separator} (';' on Windows or ':' on Unix):
#
#netbeans_extraclusters="/absolute/path/to/cluster1:/absolute/path/to/cluster2"