You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fluo.apache.org by mw...@apache.org on 2016/07/20 19:52:13 UTC

[1/2] incubator-fluo-recipes git commit: add missing dependency on commons collections

Repository: incubator-fluo-recipes
Updated Branches:
  refs/heads/master 3ee377194 -> 9be53cba4


add missing dependency on commons collections


Project: http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/commit/97f671a0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/tree/97f671a0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/diff/97f671a0

Branch: refs/heads/master
Commit: 97f671a0b3a8d8ad6dab7aad3a46aeaa19842379
Parents: 3ee3771
Author: Keith Turner <kt...@apache.org>
Authored: Wed Jul 20 15:44:10 2016 -0400
Committer: Keith Turner <kt...@apache.org>
Committed: Wed Jul 20 15:44:10 2016 -0400

----------------------------------------------------------------------
 modules/accumulo/pom.xml | 2 +-
 modules/core/pom.xml     | 6 +++++-
 modules/kryo/pom.xml     | 2 +-
 modules/spark/pom.xml    | 2 +-
 modules/test/pom.xml     | 2 +-
 pom.xml                  | 5 +++++
 6 files changed, 14 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/blob/97f671a0/modules/accumulo/pom.xml
----------------------------------------------------------------------
diff --git a/modules/accumulo/pom.xml b/modules/accumulo/pom.xml
index 45694d7..f16a9ff 100644
--- a/modules/accumulo/pom.xml
+++ b/modules/accumulo/pom.xml
@@ -18,7 +18,7 @@
   <parent>
     <groupId>org.apache.fluo</groupId>
     <artifactId>fluo-recipes-parent</artifactId>
-    <version>1.0.0-beta-3-SNAPSHOT</version>
+    <version>1.0.0-incubating-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
   <artifactId>fluo-recipes-accumulo</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/blob/97f671a0/modules/core/pom.xml
----------------------------------------------------------------------
diff --git a/modules/core/pom.xml b/modules/core/pom.xml
index 21b70ec..5210ac7 100644
--- a/modules/core/pom.xml
+++ b/modules/core/pom.xml
@@ -18,7 +18,7 @@
   <parent>
     <groupId>org.apache.fluo</groupId>
     <artifactId>fluo-recipes-parent</artifactId>
-    <version>1.0.0-beta-3-SNAPSHOT</version>
+    <version>1.0.0-incubating-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
   <artifactId>fluo-recipes-core</artifactId>
@@ -30,6 +30,10 @@
       <version>3.0.3</version>
     </dependency>
     <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
       <groupId>org.apache.fluo</groupId>
       <artifactId>fluo-api</artifactId>
     </dependency>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/blob/97f671a0/modules/kryo/pom.xml
----------------------------------------------------------------------
diff --git a/modules/kryo/pom.xml b/modules/kryo/pom.xml
index 47ed534..72228f1 100644
--- a/modules/kryo/pom.xml
+++ b/modules/kryo/pom.xml
@@ -18,7 +18,7 @@
   <parent>
     <groupId>org.apache.fluo</groupId>
     <artifactId>fluo-recipes-parent</artifactId>
-    <version>1.0.0-beta-3-SNAPSHOT</version>
+    <version>1.0.0-incubating-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
   <artifactId>fluo-recipes-kryo</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/blob/97f671a0/modules/spark/pom.xml
----------------------------------------------------------------------
diff --git a/modules/spark/pom.xml b/modules/spark/pom.xml
index a9a27c0..8e037c1 100644
--- a/modules/spark/pom.xml
+++ b/modules/spark/pom.xml
@@ -18,7 +18,7 @@
   <parent>
     <groupId>org.apache.fluo</groupId>
     <artifactId>fluo-recipes-parent</artifactId>
-    <version>1.0.0-beta-3-SNAPSHOT</version>
+    <version>1.0.0-incubating-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
   <artifactId>fluo-recipes-spark</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/blob/97f671a0/modules/test/pom.xml
----------------------------------------------------------------------
diff --git a/modules/test/pom.xml b/modules/test/pom.xml
index 5d65b1c..b2d2e4a 100644
--- a/modules/test/pom.xml
+++ b/modules/test/pom.xml
@@ -18,7 +18,7 @@
   <parent>
     <groupId>org.apache.fluo</groupId>
     <artifactId>fluo-recipes-parent</artifactId>
-    <version>1.0.0-beta-3-SNAPSHOT</version>
+    <version>1.0.0-incubating-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
   <artifactId>fluo-recipes-test</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/blob/97f671a0/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index e6f9a28..c13d461 100644
--- a/pom.xml
+++ b/pom.xml
@@ -63,6 +63,11 @@
   <dependencyManagement>
     <dependencies>
       <dependency>
+        <groupId>commons-collections</groupId>
+        <artifactId>commons-collections</artifactId>
+        <version>3.2.1</version>
+      </dependency>
+      <dependency>
         <groupId>junit</groupId>
         <artifactId>junit</artifactId>
         <version>4.12</version>


[2/2] incubator-fluo-recipes git commit: Merge remote-tracking branch 'keith/add-commons-collections'

Posted by mw...@apache.org.
Merge remote-tracking branch 'keith/add-commons-collections'


Project: http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/commit/9be53cba
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/tree/9be53cba
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/diff/9be53cba

Branch: refs/heads/master
Commit: 9be53cba4915077ff7fa714789ed0b47b067d311
Parents: 3ee3771 97f671a
Author: Mike Walch <mw...@gmail.com>
Authored: Wed Jul 20 15:51:30 2016 -0400
Committer: Mike Walch <mw...@gmail.com>
Committed: Wed Jul 20 15:51:30 2016 -0400

----------------------------------------------------------------------
 modules/accumulo/pom.xml | 2 +-
 modules/core/pom.xml     | 6 +++++-
 modules/kryo/pom.xml     | 2 +-
 modules/spark/pom.xml    | 2 +-
 modules/test/pom.xml     | 2 +-
 pom.xml                  | 5 +++++
 6 files changed, 14 insertions(+), 5 deletions(-)
----------------------------------------------------------------------