Skip to content

Commit

Permalink
#3 - Configure Maven compiler to use Java 6
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrankel authored and odrotbohm committed Aug 16, 2012
1 parent 030e882 commit 2c22001
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,17 @@
<junitArtifactName>junit:junit-dep</junitArtifactName>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>

</plugins>
</build>

Expand Down

0 comments on commit 2c22001

Please sign in to comment.