You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mo...@apache.org on 2015/06/19 06:19:04 UTC

incubator-zeppelin git commit: ZEPPELIN-105 Speedup default build

Repository: incubator-zeppelin
Updated Branches:
  refs/heads/master 23922ae48 -> bcbc8537b


ZEPPELIN-105 Speedup default build

Details in [ZEPPELIN-105](https://issues.apache.org/jira/browse/ZEPPELIN-105)

This PR cuts default Java projects build time ~2 times.

Author: Alexander Bezzubov <bz...@apache.org>

Closes #101 from bzz/build-speedup and squashes the following commits:

819ff01 [Alexander Bezzubov] ZEPPELIN-105: move checkstyle violation report to install phase
5d1b54f [Alexander Bezzubov] ZEPPELIN-105: move test coverage report to install phase


Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/bcbc8537
Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/bcbc8537
Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/bcbc8537

Branch: refs/heads/master
Commit: bcbc8537bd9697c5b0537944bbc6b08574c0fd5b
Parents: 23922ae
Author: Alexander Bezzubov <bz...@apache.org>
Authored: Sat Jun 13 15:11:51 2015 +0900
Committer: Lee moon soo <mo...@apache.org>
Committed: Thu Jun 18 21:18:59 2015 -0700

----------------------------------------------------------------------
 pom.xml | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/bcbc8537/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index dd3c2a3..e3a7ca0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -229,7 +229,7 @@
         <executions>
           <execution>
             <id>cobertura</id>
-            <phase>package</phase>
+            <phase>install</phase>
             <goals>
               <goal>cobertura</goal>
             </goals>
@@ -248,10 +248,9 @@
         </configuration>
         <executions>
           <execution>
-            <id>checkstyle</id>
+            <id>checkstyle-fail-build</id>
             <phase>validate</phase>
             <goals>
-              <goal>checkstyle</goal>
               <goal>check</goal>
             </goals>
             <configuration>
@@ -259,6 +258,17 @@
               <excludes>org/apache/zeppelin/interpreter/thrift/*</excludes>
             </configuration>
           </execution>
+          <execution>
+            <id>checkstyle-gen-html-report</id>
+            <phase>install</phase>
+            <goals>
+              <goal>checkstyle-aggregate</goal>
+            </goals>
+            <configuration>
+              <excludes>org/apache/zeppelin/interpreter/thrift/*</excludes>
+            </configuration>
+          </execution>
+
         </executions>
       </plugin>