You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by jm...@apache.org on 2020/04/08 16:48:00 UTC

[accumulo] branch master updated: Remove errorprone profile from pom.xml (#1580)

This is an automated email from the ASF dual-hosted git repository.

jmark99 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/master by this push:
     new 7684a86  Remove errorprone profile from pom.xml (#1580)
7684a86 is described below

commit 7684a860aebd5bbae2b0507ea67fbbb324b80b18
Author: Mark Owens <jm...@apache.org>
AuthorDate: Wed Apr 8 12:47:49 2020 -0400

    Remove errorprone profile from pom.xml (#1580)
    
    Removed errorprone profile from pom.xml as it currently does not work with jdk's above 8 using maven.
    
    May possibly re-introduce in the future if the status changes.
---
 pom.xml | 34 ----------------------------------
 1 file changed, 34 deletions(-)

diff --git a/pom.xml b/pom.xml
index a1f8f4c..3190aaa 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1633,40 +1633,6 @@
       </properties>
     </profile>
     <profile>
-      <!-- This profile uses the google errorprone compiler to enforce use of the Override
-      annotation where needed. Auto-generated code is not checked. -->
-      <id>use-errorprone</id>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-compiler-plugin</artifactId>
-            <configuration>
-              <compilerId>javac-with-errorprone</compilerId>
-              <forceJavacCompilerUse>true</forceJavacCompilerUse>
-              <compilerArgs>
-                <arg>-XepDisableAllChecks</arg>
-                <arg>-Xep:MissingOverride:ERROR</arg>
-                <arg>-XepExcludedPaths:.*/(proto|thrift|generated-sources)/.*</arg>
-              </compilerArgs>
-            </configuration>
-            <dependencies>
-              <dependency>
-                <groupId>com.google.errorprone</groupId>
-                <artifactId>error_prone_core</artifactId>
-                <version>2.3.1</version>
-              </dependency>
-              <dependency>
-                <groupId>org.codehaus.plexus</groupId>
-                <artifactId>plexus-compiler-javac-errorprone</artifactId>
-                <version>2.8</version>
-              </dependency>
-            </dependencies>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-    <profile>
       <id>sec-bugs</id>
       <build>
         <plugins>