Repository: incubator-zeppelin Updated Branches: refs/heads/master 914714799 -> 266ffc9a7
[Webapp build] Clean bower_components on 'mvn clean' Addresses angular version bump for existing users, as raised in #34 Author: Alexander Bezzubov <[email protected]> This patch had conflicts when merged, resolved by Committer: Lee moon soo <[email protected]> Closes #122 from bzz/clean-bower-on-web-build and squashes the following commits: 113554c [Alexander Bezzubov] webapp build: remove bower_component on mvn clean 05351cf [Alexander Bezzubov] Update Roadmap.md - replaced by link to Apache wiki Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/266ffc9a Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/266ffc9a Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/266ffc9a Branch: refs/heads/master Commit: 266ffc9a7a7de83cbe44b14b2665ea8e2acb5e5c Parents: 9147147 Author: Alexander Bezzubov <[email protected]> Authored: Thu Jun 25 09:41:12 2015 +0900 Committer: Lee moon soo <[email protected]> Committed: Fri Jun 26 10:14:46 2015 -0700 ---------------------------------------------------------------------- Roadmap.md | 15 +-------------- pom.xml | 2 +- zeppelin-web/pom.xml | 12 ++++++++++++ 3 files changed, 14 insertions(+), 15 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/266ffc9a/Roadmap.md ---------------------------------------------------------------------- diff --git a/Roadmap.md b/Roadmap.md index a9a3a90..95ec00f 100644 --- a/Roadmap.md +++ b/Roadmap.md @@ -1,17 +1,4 @@ # Zeppelin Roadmap -This document explains the list of planned and work to be done in Zeppelin. It is intended to be exhaustive but some elements might still be missing. - -## Features - -* Support for multiple separate clusters (one per-notebook) -* Apache Tajo interpreter -* Apache Flink interpreter -* Python interpreter -* Package Zeppelin (RPM,DEB) -* Apache BigTop integration -* Notebook read-only mode -* R interpreter -* Pluggable notebook persistence layer with supporting directory structure -* Printing output with stream +Please check https://cwiki.apache.org/confluence/display/ZEPPELIN/Zeppelin+Roadmap for details \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/266ffc9a/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index a193160..540e4d3 100644 --- a/pom.xml +++ b/pom.xml @@ -490,7 +490,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> - <version>2.4.1</version> + <version>2.6.1</version> <configuration> <filesets> <fileset> http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/266ffc9a/zeppelin-web/pom.xml ---------------------------------------------------------------------- diff --git a/zeppelin-web/pom.xml b/zeppelin-web/pom.xml index b8fc2eb..f4549ad 100644 --- a/zeppelin-web/pom.xml +++ b/zeppelin-web/pom.xml @@ -69,6 +69,7 @@ </excludes> </configuration> </plugin> + <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> @@ -143,6 +144,17 @@ <skip>true</skip> </configuration> </plugin> + + <plugin> + <artifactId>maven-clean-plugin</artifactId> + <configuration> + <filesets> + <fileset> + <directory>bower_components</directory> + </fileset> + </filesets> + </configuration> + </plugin> </plugins> </build>
