after many studies, I could not get the result. I am new to IntelliJ IDEA, I am using version 11.1.2. I work with 3 modules (3 eclipse projects), and in each of them I installed Settings β Compiler β Java Compiler with the following values:
Maximum Heap Size (MB): 512
Additional command line options:
-target 1.6 -XX: MaxPermSize = 512M -Xms256m -Xmx512m -XX: PermSize = 512m
And also configured Maven virtual machine parameters as the following:
-XX: PermSize = 1024M -XX: MaxPermSize = 512m -Dfile.encoding = UTF-8 -Duser.language = ep
with verified missed tests ...
I also changed Applications -> IntelliJ IDEA 12 -> Content -> Info.plist :
<key>VMOptions</key> <string>-ea -Xverify:none -Xbootclasspath/a:../lib/boot.jar</string> <key>VMOptions.i386</key> <string>-Xms256m -Xmx512m -XX:MaxPermSize=512m -XX:ReservedCodeCacheSize=128m</string> <key>VMOptions.x86_64</key> <string>-Xms256m -Xmx512m -XX:MaxPermSize=512m -XX:ReservedCodeCacheSize=128m -XX:+UseCompressedOops</string> <key>WorkingDirectory</key>
But after making these changes, IntelliJ shows me 200-250 MB of heap space allocated in the lower right corner ... What's wrong?
source share