You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by aa...@apache.org on 2017/02/04 07:20:03 UTC

hadoop git commit: HADOOP-13994. explicitly declare the commons-lang3 dependency as 3.4. Contributed by Steve Loughran.

Repository: hadoop
Updated Branches:
  refs/heads/HADOOP-13345 2f80fe773 -> 758b30ee8


HADOOP-13994. explicitly declare the commons-lang3 dependency as 3.4. Contributed by Steve Loughran.


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

Branch: refs/heads/HADOOP-13345
Commit: 758b30ee8be9e06cd438806b79eb24a5072a4318
Parents: 2f80fe7
Author: Akira Ajisaka <aa...@apache.org>
Authored: Sat Feb 4 16:19:03 2017 +0900
Committer: Akira Ajisaka <aa...@apache.org>
Committed: Sat Feb 4 16:19:03 2017 +0900

----------------------------------------------------------------------
 hadoop-common-project/hadoop-common/pom.xml |  5 +++++
 hadoop-project/pom.xml                      | 11 +++++++++++
 hadoop-tools/hadoop-aws/pom.xml             |  4 ++++
 3 files changed, 20 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/758b30ee/hadoop-common-project/hadoop-common/pom.xml
----------------------------------------------------------------------
diff --git a/hadoop-common-project/hadoop-common/pom.xml b/hadoop-common-project/hadoop-common/pom.xml
index 909cd78..396ead0 100644
--- a/hadoop-common-project/hadoop-common/pom.xml
+++ b/hadoop-common-project/hadoop-common/pom.xml
@@ -187,6 +187,11 @@
       <scope>compile</scope>
     </dependency>
     <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
       <scope>compile</scope>

http://git-wip-us.apache.org/repos/asf/hadoop/blob/758b30ee/hadoop-project/pom.xml
----------------------------------------------------------------------
diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml
index 9434e3c..eb47523 100644
--- a/hadoop-project/pom.xml
+++ b/hadoop-project/pom.xml
@@ -858,6 +858,17 @@
         <groupId>org.apache.commons</groupId>
         <artifactId>commons-configuration2</artifactId>
         <version>2.1</version>
+        <exclusions>
+          <exclusion>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-lang3</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.commons</groupId>
+        <artifactId>commons-lang3</artifactId>
+        <version>3.4</version>
       </dependency>
       <dependency>
         <groupId>org.slf4j</groupId>

http://git-wip-us.apache.org/repos/asf/hadoop/blob/758b30ee/hadoop-tools/hadoop-aws/pom.xml
----------------------------------------------------------------------
diff --git a/hadoop-tools/hadoop-aws/pom.xml b/hadoop-tools/hadoop-aws/pom.xml
index e9019d4..73e2a39 100644
--- a/hadoop-tools/hadoop-aws/pom.xml
+++ b/hadoop-tools/hadoop-aws/pom.xml
@@ -466,6 +466,10 @@
           <groupId>org.eclipse.jetty</groupId>
           <artifactId>jetty-http</artifactId>
         </exclusion>
+        <exclusion>
+          <groupId>org.apache.commons</groupId>
+          <artifactId>commons-lang3</artifactId>
+        </exclusion>
       </exclusions>
     </dependency>
     <dependency>


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org