Repository: incubator-tephra Updated Branches: refs/heads/master 2246abffb -> e08ba7725
Disable deploying examples and distribution artifacts Project: http://git-wip-us.apache.org/repos/asf/incubator-tephra/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tephra/commit/e08ba772 Tree: http://git-wip-us.apache.org/repos/asf/incubator-tephra/tree/e08ba772 Diff: http://git-wip-us.apache.org/repos/asf/incubator-tephra/diff/e08ba772 Branch: refs/heads/master Commit: e08ba7725da02d2d111ec241d8974392c6af7eaa Parents: 2246abf Author: poorna <[email protected]> Authored: Thu Sep 8 19:06:18 2016 -0700 Committer: poorna <[email protected]> Committed: Thu Sep 8 19:06:18 2016 -0700 ---------------------------------------------------------------------- tephra-distribution/pom.xml | 8 ++++++++ tephra-examples/pom.xml | 12 ++++++++++++ 2 files changed, 20 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tephra/blob/e08ba772/tephra-distribution/pom.xml ---------------------------------------------------------------------- diff --git a/tephra-distribution/pom.xml b/tephra-distribution/pom.xml index c97aba4..d5816a2 100644 --- a/tephra-distribution/pom.xml +++ b/tephra-distribution/pom.xml @@ -100,6 +100,14 @@ </execution> </executions> </plugin> + <plugin> + <!-- Disable deploy of distribution --> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/incubator-tephra/blob/e08ba772/tephra-examples/pom.xml ---------------------------------------------------------------------- diff --git a/tephra-examples/pom.xml b/tephra-examples/pom.xml index 07d0db0..9576a75 100644 --- a/tephra-examples/pom.xml +++ b/tephra-examples/pom.xml @@ -75,4 +75,16 @@ </dependency> </dependencies> + <build> + <plugins> + <plugin> + <!-- Disable deploy of examples --> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> </project>
