Repository: incubator-zeppelin Updated Branches: refs/heads/branch-0.5 d152a02ad -> c627c6008
ZEPPELIN-132 Skip deploy zeppelin-web artifact in maven-deploy-plugin https://issues.apache.org/jira/browse/ZEPPELIN-132 Skip deploy zeppelin-web artifact in maven-deploy-plugin. Which does not make sense to be published. Author: Lee moon soo <[email protected]> Closes #121 from Leemoonsoo/ZEPPELIN-132 and squashes the following commits: f556d01 [Lee moon soo] Skip deploy zeppelin-web artifact in maven-deploy-plugin (cherry picked from commit 9147147996b7f87dd1788edeaffc9cd8f06f4d17) Signed-off-by: Lee moon soo <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/c627c600 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/c627c600 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/c627c600 Branch: refs/heads/branch-0.5 Commit: c627c60081504bd18e0f465310531ab77b912962 Parents: d152a02 Author: Lee moon soo <[email protected]> Authored: Wed Jun 24 15:31:34 2015 -0700 Committer: Lee moon soo <[email protected]> Committed: Thu Jun 25 14:05:18 2015 -0700 ---------------------------------------------------------------------- zeppelin-web/pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/c627c600/zeppelin-web/pom.xml ---------------------------------------------------------------------- diff --git a/zeppelin-web/pom.xml b/zeppelin-web/pom.xml index 4c0d3a8..231f75d 100644 --- a/zeppelin-web/pom.xml +++ b/zeppelin-web/pom.xml @@ -135,6 +135,14 @@ </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.7</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build>
