Repository: incubator-zeppelin Updated Branches: refs/heads/master 26c89a336 -> 48f875d42
Enforcing maven version >= 3.1.0 As per eirslett/frontend-maven-plugin#229 zeppelin-web build requires maven version above 3.1.0 This PR enforces it though maven [prerequisites](http://maven.apache.org/ref/3.3.3/maven-model/maven.html#class_prerequisites). Documentation update is handled in #265. Author: Alexander Bezzubov <[email protected]> Closes #275 from bzz/enforce-min-maven-version and squashes the following commits: eea30ac [Alexander Bezzubov] Enforcing maven version >= 3.1.0 Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/48f875d4 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/48f875d4 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/48f875d4 Branch: refs/heads/master Commit: 48f875d42b90b6b175aa5deed2a552af8183e4a4 Parents: 26c89a3 Author: Alexander Bezzubov <[email protected]> Authored: Thu Sep 3 12:43:23 2015 +0900 Committer: Alexander Bezzubov <[email protected]> Committed: Fri Sep 4 10:44:28 2015 +0900 ---------------------------------------------------------------------- zeppelin-web/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/48f875d4/zeppelin-web/pom.xml ---------------------------------------------------------------------- diff --git a/zeppelin-web/pom.xml b/zeppelin-web/pom.xml index 2fc4cbb..68f7550 100644 --- a/zeppelin-web/pom.xml +++ b/zeppelin-web/pom.xml @@ -32,6 +32,11 @@ <version>0.6.0-incubating-SNAPSHOT</version> <name>Zeppelin: web Application</name> + <!-- See https://github.com/eirslett/frontend-maven-plugin/issues/229 --> + <prerequisites> + <maven>3.1.0</maven> + </prerequisites> + <build> <plugins> <plugin>
