You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ps...@apache.org on 2019/10/03 07:23:13 UTC

[hbase] branch branch-1.3 updated: HBASE-22988 Backport HBASE-11062 "hbtop" to branch-1 (addendum) (#684)

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

psomogyi pushed a commit to branch branch-1.3
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-1.3 by this push:
     new 092b4b2  HBASE-22988 Backport HBASE-11062 "hbtop" to branch-1 (addendum) (#684)
092b4b2 is described below

commit 092b4b28d2a730f7dfc3aaaae1dfc77207cf0e97
Author: Peter Somogyi <ps...@apache.org>
AuthorDate: Thu Oct 3 09:23:07 2019 +0200

    HBASE-22988 Backport HBASE-11062 "hbtop" to branch-1 (addendum) (#684)
    
    Remove errorProne profile
    
    Signed-off-by: Toshihiro Suzuki <br...@gmail.com>
---
 hbase-hbtop/pom.xml | 57 -----------------------------------------------------
 1 file changed, 57 deletions(-)

diff --git a/hbase-hbtop/pom.xml b/hbase-hbtop/pom.xml
index cd7a41b..fba89ea 100644
--- a/hbase-hbtop/pom.xml
+++ b/hbase-hbtop/pom.xml
@@ -180,62 +180,5 @@
         <surefire.skipFirstPart>true</surefire.skipFirstPart>
       </properties>
     </profile>
-
-    <profile>
-      <id>errorProne</id>
-      <activation>
-        <activeByDefault>false</activeByDefault>
-      </activation>
-      <build>
-        <plugins>
-          <!-- Turn on error-prone -->
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-compiler-plugin</artifactId>
-            <version>${maven.compiler.version}</version>
-            <configuration>
-              <compilerId>javac-with-errorprone</compilerId>
-              <forceJavacCompilerUse>true</forceJavacCompilerUse>
-              <showWarnings>true</showWarnings>
-              <compilerArgs>
-                <arg>-XepDisableWarningsInGeneratedCode</arg>
-                <arg>-Xep:FallThrough:OFF</arg> <!-- already in findbugs -->
-              </compilerArgs>
-              <annotationProcessorPaths>
-                <path>
-                  <groupId>org.apache.hbase</groupId>
-                  <artifactId>hbase-error-prone</artifactId>
-                  <version>${project.version}</version>
-                </path>
-              </annotationProcessorPaths>
-            </configuration>
-            <dependencies>
-              <dependency>
-                <groupId>org.apache.hbase</groupId>
-                <artifactId>hbase-error-prone</artifactId>
-                <version>${project.version}</version>
-              </dependency>
-              <dependency>
-                <groupId>org.codehaus.plexus</groupId>
-                <artifactId>plexus-compiler-javac-errorprone</artifactId>
-                <version>${plexus.errorprone.javac.version}</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>${error-prone.version}</version>
-              </dependency>
-              <dependency>
-                <groupId>org.apache.hbase</groupId>
-                <artifactId>hbase-error-prone</artifactId>
-                <version>${project.version}</version>
-              </dependency>
-            </dependencies>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
   </profiles>
 </project>