You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lens.apache.org by am...@apache.org on 2015/03/31 14:48:21 UTC

incubator-lens git commit: LENS-470 : Add commons-collection dependency (Jaideep Dhok via amareshwari)

Repository: incubator-lens
Updated Branches:
  refs/heads/master d180c2c4f -> 1820fe088


LENS-470 : Add commons-collection dependency (Jaideep Dhok via amareshwari)


Project: http://git-wip-us.apache.org/repos/asf/incubator-lens/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-lens/commit/1820fe08
Tree: http://git-wip-us.apache.org/repos/asf/incubator-lens/tree/1820fe08
Diff: http://git-wip-us.apache.org/repos/asf/incubator-lens/diff/1820fe08

Branch: refs/heads/master
Commit: 1820fe0882084520f1f855e2ae4b58bdd4d41101
Parents: d180c2c
Author: Jaideep Dhok <jd...@apache.org>
Authored: Tue Mar 31 18:18:10 2015 +0530
Committer: Amareshwari Sriramadasu <am...@apache.org>
Committed: Tue Mar 31 18:18:10 2015 +0530

----------------------------------------------------------------------
 lens-server/pom.xml | 4 ++++
 pom.xml             | 6 ++++++
 2 files changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-lens/blob/1820fe08/lens-server/pom.xml
----------------------------------------------------------------------
diff --git a/lens-server/pom.xml b/lens-server/pom.xml
index 748be1d..efac8b5 100644
--- a/lens-server/pom.xml
+++ b/lens-server/pom.xml
@@ -190,6 +190,10 @@
       <artifactId>subethasmtp</artifactId>
     </dependency>
     <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
       <groupId>commons-dbcp</groupId>
       <artifactId>commons-dbcp</artifactId>
     </dependency>

http://git-wip-us.apache.org/repos/asf/incubator-lens/blob/1820fe08/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a5dd80f..f306ee0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -53,6 +53,7 @@
     <slf4j.version>1.7.6</slf4j.version>
     <log4j.version>1.2.16</log4j.version>
     <commons.lang.version>2.4</commons.lang.version>
+    <commons.collections.version>3.2.1</commons.collections.version>
     <joda.time.version>2.0</joda.time.version>
     <guava.version>13.0.1</guava.version>
     <lombok.version>1.12.4</lombok.version>
@@ -679,6 +680,11 @@
         <version>${commons.lang.version}</version>
       </dependency>
       <dependency>
+        <groupId>commons-collections</groupId>
+        <artifactId>commons-collections</artifactId>
+        <version>${commons.collections.version}</version>
+      </dependency>
+      <dependency>
         <groupId>joda-time</groupId>
         <artifactId>joda-time</artifactId>
         <version>${joda.time.version}</version>