Put back the maven-compiler-plugin

This commit is contained in:
Zafar Khaja 2013-11-16 21:12:59 +04:00
parent 39edfa3598
commit e92c95e13b

16
pom.xml
View File

@ -48,4 +48,20 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
</plugins>
</build>
</project>