Skip to content

Commit

Permalink
Skipping jacoco plugin from build-all profile to avoid failure in rel…
Browse files Browse the repository at this point in the history
…ease plugin

This closes apache#1313
  • Loading branch information
ravipesala authored and jackylk committed Sep 1, 2017
1 parent 8dc7f40 commit 2be683e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
14 changes: 14 additions & 0 deletions integration/spark-common-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 2be683e

Please sign in to comment.