Skip to content

Commit

Permalink
SHRINKWRAP-273 Fixed the way how to set Java 5 compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
kpiwko authored and ALRubinger committed Oct 31, 2011
1 parent 0c5ea00 commit 7c9a4e7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,17 @@
<artifactId>maven-compiler-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<source>1.5</source>
<target>1.5</target>
<source>1.6</source>
<target>1.6</target>
<showDeprecation>false</showDeprecation>
<showWarnings>true</showWarnings>
<optimize>true</optimize>
<compilerVersion>1.6</compilerVersion>
<fork>true</fork>
<compilerArguments>
<source>1.5</source>
<target>1.5</target>
</compilerArguments>
<argLine>-Xmx512M</argLine>
<executable>${JAVA_HOME}/bin/javac</executable>
</configuration>
Expand Down

0 comments on commit 7c9a4e7

Please sign in to comment.