Skip to content

Commit

Permalink
Showing 2 changed files with 17 additions and 2 deletions.
10 changes: 9 additions & 1 deletion core/pom.rb
Original file line number Diff line number Diff line change
@@ -157,7 +157,10 @@
'debug' => 'true',
'verbose' => 'true',
'fork' => 'true',
'compilerArgs' => { 'arg' => '-J-Xmx1G' },
'compilerArgs' => {
'arg' => '-J-Xmx1G',
'arg' => '-J-Xbootclasspath/p:${unsafe.jar}'
},
'showWarnings' => 'true',
'showDeprecation' => 'true',
'source' => [ '${base.java.version}', '1.7' ],
@@ -196,6 +199,11 @@
execute_goals( 'compile',
:id => 'eclipse-hack',
:phase => 'process-classes',
'compilerArgs' => [ '-XDignore.symbol.file=true',
'-J-Duser.language=en',
'-J-Dfile.encoding=UTF-8',
'-J-Xbootclasspath/p:${unsafe.jar}',
'-J-Xmx${jruby.compile.memory}' ],
'skipMain' => 'true',
'includes' => [ '**/*.java' ] )
end
9 changes: 8 additions & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
@@ -404,6 +404,13 @@ DO NOT MODIFIY - GENERATED CODE
<goal>compile</goal>
</goals>
<configuration>
<compilerArgs>
<compilerArg>-XDignore.symbol.file=true</compilerArg>
<compilerArg>-J-Duser.language=en</compilerArg>
<compilerArg>-J-Dfile.encoding=UTF-8</compilerArg>
<compilerArg>-J-Xbootclasspath/p:${unsafe.jar}</compilerArg>
<compilerArg>-J-Xmx${jruby.compile.memory}</compilerArg>
</compilerArgs>
<skipMain>true</skipMain>
<includes>
<include>**/*.java</include>
@@ -417,7 +424,7 @@ DO NOT MODIFIY - GENERATED CODE
<verbose>true</verbose>
<fork>true</fork>
<compilerArgs>
<arg>-J-Xmx1G</arg>
<arg>-J-Xbootclasspath/p:${unsafe.jar}</arg>
</compilerArgs>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>

0 comments on commit 4237631

Please sign in to comment.