You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@carbondata.apache.org by ja...@apache.org on 2017/09/01 00:35:04 UTC

carbondata git commit: Skipping jacoco plugin from build-all profile to avoid failure in release plugin

Repository: carbondata
Updated Branches:
  refs/heads/master 8dc7f402b -> 2be683e2a


Skipping jacoco plugin from build-all profile to avoid failure in release plugin

This closes #1313


Project: http://git-wip-us.apache.org/repos/asf/carbondata/repo
Commit: http://git-wip-us.apache.org/repos/asf/carbondata/commit/2be683e2
Tree: http://git-wip-us.apache.org/repos/asf/carbondata/tree/2be683e2
Diff: http://git-wip-us.apache.org/repos/asf/carbondata/diff/2be683e2

Branch: refs/heads/master
Commit: 2be683e2a2460aed28bb2d2fa05da42d98d81094
Parents: 8dc7f40
Author: Ravindra Pesala <ra...@gmail.com>
Authored: Fri Sep 1 05:55:21 2017 +0530
Committer: Jacky Li <ja...@qq.com>
Committed: Fri Sep 1 08:34:14 2017 +0800

----------------------------------------------------------------------
 integration/spark-common-test/pom.xml | 14 ++++++++++++++
 pom.xml                               | 11 +++++++++++
 2 files changed, 25 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/carbondata/blob/2be683e2/integration/spark-common-test/pom.xml
----------------------------------------------------------------------
diff --git a/integration/spark-common-test/pom.xml b/integration/spark-common-test/pom.xml
index 8c11996..29eae9e 100644
--- a/integration/spark-common-test/pom.xml
+++ b/integration/spark-common-test/pom.xml
@@ -405,5 +405,19 @@
         <maven.test.skip>true</maven.test.skip>
       </properties>
     </profile>
+    <profile>
+      <id>build-all</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <configuration>
+              <skip>true</skip>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
   </profiles>
 </project>

http://git-wip-us.apache.org/repos/asf/carbondata/blob/2be683e2/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 5c74555..64accea 100644
--- a/pom.xml
+++ b/pom.xml
@@ -419,6 +419,17 @@
         <module>integration/presto</module>
         <module>examples/flink</module>
       </modules>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.jacoco</groupId>
+            <artifactId>jacoco-maven-plugin</artifactId>
+            <configuration>
+              <skip>true</skip>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
     </profile>
     <profile>
       <id>hadoop-2.2.0</id>