From 37b16612ac94be82345563ac04e1134a81cca183 Mon Sep 17 00:00:00 2001 From: Reynald Borer Date: Tue, 14 Mar 2017 16:21:20 +0100 Subject: [PATCH 1/2] Switch batch to curator 2.12.0 Curator version 3.x targets Zookeeper 3.5 which is in alpha. Using this version on an ensemble running Zookeeper 3.4 may lead to protocol incompatibilities. --- project.clj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project.clj b/project.clj index 7a01ecc..736a229 100644 --- a/project.clj +++ b/project.clj @@ -4,9 +4,9 @@ :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] - [org.apache.curator/curator-recipes "3.2.1"] - [org.apache.curator/curator-framework "3.2.1"] - [org.apache.curator/curator-x-discovery "3.2.1"]] + [org.apache.curator/curator-recipes "2.12.0"] + [org.apache.curator/curator-framework "2.12.0"] + [org.apache.curator/curator-x-discovery "2.12.0"]] :profiles {:dev {:dependencies [[org.slf4j/log4j-over-slf4j "1.7.24"] [org.slf4j/slf4j-simple "1.7.24"]] :exclusions [org.slf4j/slf4j-log4j12]}} From e5a05d07971977f6a80d1b8a1231f65f7538d609 Mon Sep 17 00:00:00 2001 From: Reynald Borer Date: Sun, 8 Mar 2020 14:31:57 +0100 Subject: [PATCH 2/2] Bump Apache curator to 2.13.0 --- project.clj | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/project.clj b/project.clj index 736a229..742c4e0 100644 --- a/project.clj +++ b/project.clj @@ -4,11 +4,11 @@ :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] - [org.apache.curator/curator-recipes "2.12.0"] - [org.apache.curator/curator-framework "2.12.0"] - [org.apache.curator/curator-x-discovery "2.12.0"]] - :profiles {:dev {:dependencies [[org.slf4j/log4j-over-slf4j "1.7.24"] - [org.slf4j/slf4j-simple "1.7.24"]] + [org.apache.curator/curator-recipes "2.13.0"] + [org.apache.curator/curator-framework "2.13.0"] + [org.apache.curator/curator-x-discovery "2.13.0"]] + :profiles {:dev {:dependencies [[org.slf4j/log4j-over-slf4j "1.7.30"] + [org.slf4j/slf4j-simple "1.7.30"]] :exclusions [org.slf4j/slf4j-log4j12]}} :scm {:name "git" :url "https://github.com/pingles/curator"})