[ 
https://issues.apache.org/jira/browse/KYLIN-2924?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16642696#comment-16642696
 ] 

ASF GitHub Bot commented on KYLIN-2924:
---------------------------------------

shaofengshi closed pull request #281: KYLIN-2924 disable google error-prone for 
travis-ci
URL: https://github.com/apache/kylin/pull/281
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/pom.xml b/pom.xml
index f35191f55b..c973d1abce 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1303,27 +1303,7 @@
               <fork>true</fork>
               <meminitial>1024m</meminitial>
               <maxmem>2048m</maxmem>
-              <compilerId>javac-with-errorprone</compilerId>
-              <forceJavacCompilerUse>true</forceJavacCompilerUse>
-              <!--<showWarnings>true</showWarnings>-->
-              <source>${javaVersion}</source>
-              <target>${javaVersion}</target>
-              <compilerArgs>
-                <arg>-XepDisableWarningsInGeneratedCode</arg>
-              </compilerArgs>
             </configuration>
-            <dependencies>
-              <dependency>
-                <groupId>org.codehaus.plexus</groupId>
-                <artifactId>plexus-compiler-javac-errorprone</artifactId>
-                <version>2.8.5</version>
-              </dependency>
-              <dependency>
-                <groupId>com.google.errorprone</groupId>
-                <artifactId>error_prone_core</artifactId>
-                <version>2.3.1</version>
-              </dependency>
-            </dependencies>
           </plugin>
 
           <plugin>
@@ -1470,115 +1450,95 @@
               <fork>true</fork>
               <meminitial>1024m</meminitial>
               <maxmem>2048m</maxmem>
-              <compilerId>javac-with-errorprone</compilerId>
-              <forceJavacCompilerUse>true</forceJavacCompilerUse>
-              <!--<showWarnings>true</showWarnings>-->
-              <source>${javaVersion}</source>
-              <target>${javaVersion}</target>
-              <compilerArgs>
-                <arg>-XepDisableWarningsInGeneratedCode</arg>
-              </compilerArgs>
             </configuration>
-            <dependencies>
-              <dependency>
-                <groupId>org.codehaus.plexus</groupId>
-                <artifactId>plexus-compiler-javac-errorprone</artifactId>
-                <version>2.8.5</version>
-              </dependency>
-              <dependency>
-                <groupId>com.google.errorprone</groupId>
-                <artifactId>error_prone_core</artifactId>
-                <version>2.3.1</version>
-              </dependency>
-            </dependencies>
-          </plugin>
-
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-dependency-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>copy-jamm</id>
-                <goals>
-                  <goal>copy</goal>
-                </goals>
-                <phase>generate-test-resources</phase>
-                <configuration>
-                  <artifactItems>
-                    <artifactItem>
-                      <groupId>com.github.jbellis</groupId>
-                      <artifactId>jamm</artifactId>
-                      <outputDirectory>${project.build.testOutputDirectory}
-                      </outputDirectory>
-                      <destFileName>jamm.jar</destFileName>
-                    </artifactItem>
-                  </artifactItems>
-                </configuration>
-              </execution>
-            </executions>
           </plugin>
 
-          <plugin>
-            <groupId>org.jacoco</groupId>
-            <artifactId>jacoco-maven-plugin</artifactId>
-            <configuration>
-              <append>true</append>
-              <destFile>
-                ${sonar.jacoco.reportPaths}
-              </destFile>
-            </configuration>
-            <executions>
-              <execution>
-                <id>pre-test</id>
-                <goals>
-                  <goal>prepare-agent</goal>
-                </goals>
-                <configuration>
-                  <propertyName>surefireArgLine</propertyName>
-                </configuration>
-              </execution>
-              <execution>
-                <id>post-test</id>
-                <phase>test</phase>
-                <goals>
-                  <goal>report</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <version>2.21.0</version>
-            <configuration>
-              <reportsDirectory>${project.basedir}/../target/surefire-reports
-              </reportsDirectory>
-              <excludes>
-                <exclude>**/IT*.java</exclude>
-              </excludes>
-              <systemProperties>
-                <property>
-                  <name>buildCubeUsingProvidedData</name>
-                  <value>false</value>
-                </property>
-                <property>
-                  <name>log4j.configuration</name>
-                  <value>
-                    
file:${project.basedir}/../build/conf/kylin-tools-log4j.properties
-                  </value>
-                </property>
-              </systemProperties>
-              <argLine>-javaagent:${project.build.testOutputDirectory}/jamm.jar
-                ${argLine} ${surefireArgLine}
-              </argLine>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-    <profile>
-      <!-- This profile adds/overrides few features of the 'apache-release'
-           profile in the parent pom. -->
+    <plugin>
+      <groupId>org.apache.maven.plugins</groupId>
+      <artifactId>maven-dependency-plugin</artifactId>
+      <executions>
+        <execution>
+          <id>copy-jamm</id>
+          <goals>
+            <goal>copy</goal>
+          </goals>
+          <phase>generate-test-resources</phase>
+          <configuration>
+            <artifactItems>
+              <artifactItem>
+                <groupId>com.github.jbellis</groupId>
+                <artifactId>jamm</artifactId>
+                <outputDirectory>${project.build.testOutputDirectory}
+                </outputDirectory>
+                <destFileName>jamm.jar</destFileName>
+              </artifactItem>
+            </artifactItems>
+          </configuration>
+        </execution>
+      </executions>
+    </plugin>
+
+    <plugin>
+      <groupId>org.jacoco</groupId>
+      <artifactId>jacoco-maven-plugin</artifactId>
+      <configuration>
+        <append>true</append>
+        <destFile>
+          ${sonar.jacoco.reportPaths}
+        </destFile>
+      </configuration>
+      <executions>
+        <execution>
+          <id>pre-test</id>
+          <goals>
+            <goal>prepare-agent</goal>
+          </goals>
+          <configuration>
+            <propertyName>surefireArgLine</propertyName>
+          </configuration>
+        </execution>
+        <execution>
+          <id>post-test</id>
+          <phase>test</phase>
+          <goals>
+            <goal>report</goal>
+          </goals>
+        </execution>
+      </executions>
+    </plugin>
+    <plugin>
+      <groupId>org.apache.maven.plugins</groupId>
+      <artifactId>maven-surefire-plugin</artifactId>
+      <version>2.21.0</version>
+      <configuration>
+        <reportsDirectory>${project.basedir}/../target/surefire-reports
+        </reportsDirectory>
+        <excludes>
+          <exclude>**/IT*.java</exclude>
+        </excludes>
+        <systemProperties>
+          <property>
+            <name>buildCubeUsingProvidedData</name>
+            <value>false</value>
+          </property>
+          <property>
+            <name>log4j.configuration</name>
+            <value>
+              
file:${project.basedir}/../build/conf/kylin-tools-log4j.properties
+            </value>
+          </property>
+        </systemProperties>
+        <argLine>-javaagent:${project.build.testOutputDirectory}/jamm.jar
+          ${argLine} ${surefireArgLine}
+        </argLine>
+      </configuration>
+    </plugin>
+  </plugins>
+</build>
+</profile>
+<profile>
+<!-- This profile adds/overrides few features of the 'apache-release'
+     profile in the parent pom. -->
       <id>apache-release</id>
       <activation>
         <property>


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


> Utilize error-prone to discover common coding mistakes
> ------------------------------------------------------
>
>                 Key: KYLIN-2924
>                 URL: https://issues.apache.org/jira/browse/KYLIN-2924
>             Project: Kylin
>          Issue Type: Improvement
>            Reporter: Ted Yu
>            Assignee: Billy Liu
>            Priority: Major
>             Fix For: v2.6.0
>
>
> http://errorprone.info/ is a tool which detects common coding mistakes.
> We should incorporate into Kylin build.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to