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 2017/09/15 06:08:24 UTC

zeppelin git commit: [ZEPPELIN-2928] Hotfix on maven set version functionality

Repository: zeppelin
Updated Branches:
  refs/heads/master 3f591c232 -> 9c1fca182


[ZEPPELIN-2928] Hotfix on maven set version functionality

### What is this PR for?
Hotfix on a recent commit that removed the version soft-coded variable and introduced hard-coded references to version tag.

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

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

### How should this be tested?
Run "mvn versions:set -DprocessDependencies=false -DnewVersion=0.8.0-SNAPSHOT-123"

### 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 #2584 from necosta/zeppelin-2928 and squashes the following commits:

5fd2550 [Nelson Costa] [ZEPPELIN-2928] Hotfix on maven set version functionality
f5ccf89 [Nelson Costa] [ZEPPELIN-2928] Hotfix on maven set version functionality


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

Branch: refs/heads/master
Commit: 9c1fca182314c817e03250f0760aff2b0158cc7a
Parents: 3f591c2
Author: Nelson Costa <ne...@gmail.com>
Authored: Thu Sep 14 09:43:52 2017 +0100
Committer: Jeff Zhang <zj...@apache.org>
Committed: Fri Sep 15 14:08:17 2017 +0800

----------------------------------------------------------------------
 zeppelin-distribution/pom.xml | 4 ++--
 zeppelin-jupyter/pom.xml      | 2 +-
 zeppelin-server/pom.xml       | 2 +-
 zeppelin-zengine/pom.xml      | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9c1fca18/zeppelin-distribution/pom.xml
----------------------------------------------------------------------
diff --git a/zeppelin-distribution/pom.xml b/zeppelin-distribution/pom.xml
index 36c3522..ed05c93 100644
--- a/zeppelin-distribution/pom.xml
+++ b/zeppelin-distribution/pom.xml
@@ -75,13 +75,13 @@
 
   <dependencies>
     <dependency>
-      <artifactId>zeppelin-server</artifactId>
       <groupId>${project.groupId}</groupId>
+      <artifactId>zeppelin-server</artifactId>
       <version>${project.version}</version>
     </dependency>
     <dependency>
-      <artifactId>zeppelin-web</artifactId>
       <groupId>${project.groupId}</groupId>
+      <artifactId>zeppelin-web</artifactId>
       <version>${project.version}</version>
       <type>war</type>
     </dependency>

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9c1fca18/zeppelin-jupyter/pom.xml
----------------------------------------------------------------------
diff --git a/zeppelin-jupyter/pom.xml b/zeppelin-jupyter/pom.xml
index 914ec51..c6c688a 100644
--- a/zeppelin-jupyter/pom.xml
+++ b/zeppelin-jupyter/pom.xml
@@ -63,7 +63,7 @@
     <dependency>
       <groupId>org.apache.zeppelin</groupId>
       <artifactId>zeppelin-markdown</artifactId>
-      <version>${zeppelin.version}</version>
+      <version>${project.version}</version>
     </dependency>
 
     <!-- Test -->

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9c1fca18/zeppelin-server/pom.xml
----------------------------------------------------------------------
diff --git a/zeppelin-server/pom.xml b/zeppelin-server/pom.xml
index e69fba4..24d5ee7 100644
--- a/zeppelin-server/pom.xml
+++ b/zeppelin-server/pom.xml
@@ -87,7 +87,7 @@
     <dependency>
       <groupId>${project.groupId}</groupId>
       <artifactId>zeppelin-zengine</artifactId>
-      <version>0.8.0-SNAPSHOT</version>
+      <version>${project.version}</version>
       <exclusions>
         <exclusion>
           <groupId>com.fasterxml.jackson.core</groupId>

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9c1fca18/zeppelin-zengine/pom.xml
----------------------------------------------------------------------
diff --git a/zeppelin-zengine/pom.xml b/zeppelin-zengine/pom.xml
index b3d5c63..314ca18 100644
--- a/zeppelin-zengine/pom.xml
+++ b/zeppelin-zengine/pom.xml
@@ -57,7 +57,7 @@
     <dependency>
       <groupId>${project.groupId}</groupId>
       <artifactId>zeppelin-interpreter</artifactId>
-      <version>0.8.0-SNAPSHOT</version>
+      <version>${project.version}</version>
     </dependency>
 
     <dependency>