Repository: incubator-zeppelin Updated Branches: refs/heads/master 927b93308 -> 914714799
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 Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/91471479 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/91471479 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/91471479 Branch: refs/heads/master Commit: 9147147996b7f87dd1788edeaffc9cd8f06f4d17 Parents: 927b933 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:06 2015 -0700 ---------------------------------------------------------------------- zeppelin-web/pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/91471479/zeppelin-web/pom.xml ---------------------------------------------------------------------- diff --git a/zeppelin-web/pom.xml b/zeppelin-web/pom.xml index dbff8f6..b8fc2eb 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>
