You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2015/09/14 13:45:46 UTC

[1/2] camel git commit: CAMEL-9130 : added dependency to Jedis client

Repository: camel
Updated Branches:
  refs/heads/master 992b63d38 -> 9c64502ee


CAMEL-9130 : added dependency to Jedis client

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

Branch: refs/heads/master
Commit: 6d792905196323969db6cdacb298ef672ca0d05f
Parents: 992b63d
Author: SyBen <Sy...@users.noreply.github.com>
Authored: Mon Sep 14 11:49:11 2015 +0200
Committer: SyBen <Sy...@users.noreply.github.com>
Committed: Mon Sep 14 11:49:11 2015 +0200

----------------------------------------------------------------------
 components/camel-spring-redis/pom.xml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/6d792905/components/camel-spring-redis/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-spring-redis/pom.xml b/components/camel-spring-redis/pom.xml
index b0ac8a3..0c788d3 100755
--- a/components/camel-spring-redis/pom.xml
+++ b/components/camel-spring-redis/pom.xml
@@ -45,7 +45,11 @@
             <artifactId>spring-data-redis</artifactId>
             <version>${spring-data-redis-version}</version>
         </dependency>
-        <!-- need to add the dependency of jedis as redis client lib -->
+        <dependency>
+        	<groupId>redis.clients</groupId>
+        	<artifactId>jedis</artifactId>
+        	<version>2.6.3</version>
+        </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-test</artifactId>


[2/2] camel git commit: CAMEL-9130. Polished. This closes #611.

Posted by da...@apache.org.
CAMEL-9130. Polished. This closes #611.


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

Branch: refs/heads/master
Commit: 9c64502ee1f3ba400cdb3bd907e320eb9c8c9db6
Parents: 6d79290
Author: Claus Ibsen <da...@apache.org>
Authored: Mon Sep 14 13:46:50 2015 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Sep 14 13:46:50 2015 +0200

----------------------------------------------------------------------
 components/camel-spring-redis/pom.xml | 2 +-
 parent/pom.xml                        | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/9c64502e/components/camel-spring-redis/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-spring-redis/pom.xml b/components/camel-spring-redis/pom.xml
index 0c788d3..c678016 100755
--- a/components/camel-spring-redis/pom.xml
+++ b/components/camel-spring-redis/pom.xml
@@ -48,7 +48,7 @@
         <dependency>
         	<groupId>redis.clients</groupId>
         	<artifactId>jedis</artifactId>
-        	<version>2.6.3</version>
+        	<version>${jedis-client-version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>

http://git-wip-us.apache.org/repos/asf/camel/blob/9c64502e/parent/pom.xml
----------------------------------------------------------------------
diff --git a/parent/pom.xml b/parent/pom.xml
index 35250df..97fe811 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -264,6 +264,7 @@
     <jcr-version>2.0</jcr-version>
     <jdom-bundle-version>1.1_4</jdom-bundle-version>
     <jdom-version>1.1.3</jdom-version>
+    <jedis-client-version>2.6.3</jedis-client-version>
     <jedis-client-bundle-version>2.7.3_1</jedis-client-bundle-version>
     <jersey-version>2.11</jersey-version>
     <jetty6-bundle-version>6.1.26_4</jetty6-bundle-version>