Skip to content

Instantly share code, notes, and snippets.

@mrbald
Last active August 22, 2018 10:55
Show Gist options
  • Save mrbald/90f1f39adfcfa3d79339da598b9b2ab1 to your computer and use it in GitHub Desktop.
Save mrbald/90f1f39adfcfa3d79339da598b9b2ab1 to your computer and use it in GitHub Desktop.
Strict Warnings Policy with Maven
<project ...>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>...</version>
<configuration>
<compilerArgs>
<arg>-Xlint:all,-options,-path,-sunapi</arg>
</compilerArgs>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment