Update pom.xml

Try and fix the bug where maven compiles in JDK 1.3
This commit is contained in:
Yive 2014-04-25 06:08:05 -07:00
parent c403c1736f
commit 908a9b2b87
1 changed files with 9 additions and 1 deletions

10
pom.xml
View File

@ -139,6 +139,14 @@
<finalName>ChestShop</finalName>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
@ -185,4 +193,4 @@
</resources>
</build>
</project>
</project>