diff options
Diffstat (limited to 'common/impl-parent/pom.xml')
-rw-r--r-- | common/impl-parent/pom.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/common/impl-parent/pom.xml b/common/impl-parent/pom.xml index c4ce7b168..f09996564 100644 --- a/common/impl-parent/pom.xml +++ b/common/impl-parent/pom.xml @@ -132,9 +132,27 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> + <!-- Use google's error-prone static analysis--> + <compilerId>javac-with-errorprone</compilerId> + <forceJavacCompilerUse>true</forceJavacCompilerUse> + <showWarnings>true</showWarnings> <source>1.8</source> <target>1.8</target> </configuration> + <dependencies> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-compiler-javac-errorprone</artifactId> + <version>2.5</version> + </dependency> + <!-- override plexus-compiler-javac-errorprone's dependency on + Error Prone with the latest version --> + <dependency> + <groupId>com.google.errorprone</groupId> + <artifactId>error_prone_core</artifactId> + <version>2.0.9</version> + </dependency> + </dependencies> </plugin> </plugins> </build> |