You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by jo...@apache.org on 2018/12/10 02:37:25 UTC

zeppelin git commit: [HOTFIX] Change the version of common-lang to commons-lang3 of 3.4

Repository: zeppelin
Updated Branches:
  refs/heads/branch-0.8 8d9b34157 -> a6cf2dfa3


[HOTFIX] Change the version of common-lang to commons-lang3 of 3.4

### What is this PR for?
Fixing build issue for branch-0.8

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

### What is the Jira issue?
N/A

### How should this be tested?
Pass CI

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

Author: Jongyoul Lee <jo...@gmail.com>

Closes #3257 from jongyoul/hotfix/change-commons-lang3-version and squashes the following commits:

e9c21d858 [Jongyoul Lee] [HOTFIX] Change the version of common-lang to commons-lang3 of 3.4


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

Branch: refs/heads/branch-0.8
Commit: a6cf2dfa366dec0db57590c390786dba8269f60a
Parents: 8d9b341
Author: avner <av...@cabri.org.il>
Authored: Mon Dec 10 10:57:50 2018 +0900
Committer: Jongyoul Lee <jo...@apache.org>
Committed: Mon Dec 10 11:37:11 2018 +0900

----------------------------------------------------------------------
 zeppelin-interpreter/pom.xml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/a6cf2dfa/zeppelin-interpreter/pom.xml
----------------------------------------------------------------------
diff --git a/zeppelin-interpreter/pom.xml b/zeppelin-interpreter/pom.xml
index 7539cdf..6fa650e 100644
--- a/zeppelin-interpreter/pom.xml
+++ b/zeppelin-interpreter/pom.xml
@@ -37,6 +37,7 @@
 
   <properties>
     <!--library versions-->
+    <commons.lang3.version>3.4</commons.lang3.version>
     <commons.pool2.version>2.3</commons.pool2.version>
     <commons.exec.version>1.3</commons.exec.version>
     <maven.plugin.api.version>3.0</maven.plugin.api.version>
@@ -84,8 +85,9 @@
     </dependency>
 
     <dependency>
-      <groupId>commons-lang</groupId>
-      <artifactId>commons-lang</artifactId>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
+      <version>${commons.lang3.version}</version>
     </dependency>
 
     <dependency>