Switch to maven-compiler-plugin 3.1

This commit is contained in:
Andrew Bayer 2013-12-16 15:58:16 -08:00
parent 805d45a7a9
commit 16ea4fb33f
1 changed files with 8 additions and 8 deletions

View File

@ -595,20 +595,20 @@
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<version>3.1</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<source>${maven.compile.source}</source>
<target>${maven.compile.target}</target>
<showDeprecation>false</showDeprecation>
<showWarnings>true</showWarnings>
<compilerArguments>
<Xlint />
<Xlint:-deprecation />
<Xlint:-rawtypes />
<Xlint:-serial />
<Xlint:-unchecked />
</compilerArguments>
<compilerArgs>
<compilerArg>-Xlint</compilerArg>
<compilerArg>-Xlint:-deprecation</compilerArg>
<compilerArg>-Xlint:-rawtypes</compilerArg>
<compilerArg>-Xlint:-serial</compilerArg>
<compilerArg>-Xlint:-unchecked</compilerArg>
</compilerArgs>
</configuration>
</plugin>
<plugin>