You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2018/01/19 03:40:49 UTC

zeppelin git commit: [ZEPPELIN-3169] Fix maven version set

Repository: zeppelin
Updated Branches:
  refs/heads/master 92662a8a4 -> c48aba3e9


[ZEPPELIN-3169] Fix maven version set

### What is this PR for?
Bug fix on changing Maven version (0.8.0-SNAPSHOT -> ?)

### What type of PR is it?
[Bug Fix | Hot Fix ]

### Todos
* [ ] - Task

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-3169

### How should this be tested?
* Run 'mvn versions:set -DprocessDependencies=false -DnewVersion=0.8.0-SNAPSHOT-123 -DgenerateBackupPoms=false'
* Run 'mvn clean package -DskipTests'
* Expect BUILD SUCCESS

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update? N
* Is there breaking changes for older versions? N
* Does this needs documentation? N

Author: Nelson Costa <ne...@gmail.com>

Closes #2731 from necosta/zeppelin3169 and squashes the following commits:

9f73aff [Nelson Costa] [ZEPPELIN-3169] Fix maven version set


Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/c48aba3e
Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/c48aba3e
Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/c48aba3e

Branch: refs/heads/master
Commit: c48aba3e964e090f7325e7704db9985f9e5c63f1
Parents: 92662a8
Author: Nelson Costa <ne...@gmail.com>
Authored: Tue Jan 16 10:32:35 2018 +0000
Committer: Jeff Zhang <zj...@apache.org>
Committed: Fri Jan 19 11:40:43 2018 +0800

----------------------------------------------------------------------
 interpreter-parent/pom.xml | 2 +-
 pom.xml                    | 1 +
 shell/pom.xml              | 1 +
 zeppelin-jupyter/pom.xml   | 2 +-
 4 files changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/c48aba3e/interpreter-parent/pom.xml
----------------------------------------------------------------------
diff --git a/interpreter-parent/pom.xml b/interpreter-parent/pom.xml
index cb08965..fc924c1 100644
--- a/interpreter-parent/pom.xml
+++ b/interpreter-parent/pom.xml
@@ -37,7 +37,7 @@
       <dependency>
         <groupId>${project.groupId}</groupId>
         <artifactId>zeppelin-interpreter</artifactId>
-        <version>0.8.0-SNAPSHOT</version>
+        <version>${project.version}</version>
         <scope>provided</scope>
       </dependency>
 

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/c48aba3e/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b6f93de..bb1a1e2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -52,6 +52,7 @@
   <inceptionYear>2013</inceptionYear>
 
   <modules>
+    <module>interpreter-parent</module>
     <module>zeppelin-interpreter</module>
     <module>zeppelin-zengine</module>
     <module>zeppelin-display</module>

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/c48aba3e/shell/pom.xml
----------------------------------------------------------------------
diff --git a/shell/pom.xml b/shell/pom.xml
index 0157d86..56714f5 100644
--- a/shell/pom.xml
+++ b/shell/pom.xml
@@ -45,6 +45,7 @@
     <dependency>
       <groupId>${project.groupId}</groupId>
       <artifactId>zeppelin-interpreter</artifactId>
+      <version>${project.version}</version>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/c48aba3e/zeppelin-jupyter/pom.xml
----------------------------------------------------------------------
diff --git a/zeppelin-jupyter/pom.xml b/zeppelin-jupyter/pom.xml
index c6c688a..eef0e36 100644
--- a/zeppelin-jupyter/pom.xml
+++ b/zeppelin-jupyter/pom.xml
@@ -35,7 +35,7 @@
   <description>Jupyter support for Apache Zeppelin</description>
 
   <properties>
-    <zeppelin.version>0.8.0-SNAPSHOT</zeppelin.version>
+    <zeppelin.version>${project.version}</zeppelin.version>
   </properties>
 
   <dependencies>