Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add "lint" profile
iay committed Oct 3, 2017
1 parent 85385f6 commit b16ab8e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pom.xml
@@ -131,6 +131,26 @@
</plugins>
</reporting>

<profiles>
<profile>
<id>lint</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<debug>true</debug>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<repositories>
<repository>
<id>shib-release</id>

0 comments on commit b16ab8e

Please sign in to comment.