From f48818b137f59d596af44edcb103dbac45fc382d Mon Sep 17 00:00:00 2001 From: gered Date: Tue, 17 May 2016 14:37:25 -0400 Subject: [PATCH] move clj-browserchannel dependency to provided since it will always be included as a dependency of projects using either of these adapters anyway --- clj-browserchannel-immutant-adapter/project.clj | 5 +++-- clj-browserchannel-jetty-adapter/project.clj | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/clj-browserchannel-immutant-adapter/project.clj b/clj-browserchannel-immutant-adapter/project.clj index b3d4c96..db01f99 100644 --- a/clj-browserchannel-immutant-adapter/project.clj +++ b/clj-browserchannel-immutant-adapter/project.clj @@ -2,9 +2,10 @@ :description "Immutant async adapter for BrowserChannel" :url "https://github.com/gered/clj-browserchannel/tree/master/clj-browserchannel-immutant-adapter" - :dependencies [[gered/clj-browserchannel "0.3"]] + :dependencies [] :profiles {:provided {:dependencies [[org.clojure/clojure "1.8.0"] - [org.immutant/web "2.1.4"]]}}) + [org.immutant/web "2.1.4"] + [gered/clj-browserchannel "0.3"]]}}) diff --git a/clj-browserchannel-jetty-adapter/project.clj b/clj-browserchannel-jetty-adapter/project.clj index a19272c..8a80292 100644 --- a/clj-browserchannel-jetty-adapter/project.clj +++ b/clj-browserchannel-jetty-adapter/project.clj @@ -2,11 +2,12 @@ :description "Jetty async adapter for BrowserChannel" :url "https://github.com/gered/clj-browserchannel/tree/master/clj-browserchannel-jetty-adapter" - :dependencies [[gered/clj-browserchannel "0.3"]] + :dependencies [] :profiles {:provided {:dependencies [[org.clojure/clojure "1.8.0"] [ring/ring-core "1.4.0"] [ring/ring-servlet "1.4.0"] - [ring/ring-jetty-adapter "1.4.0"]]}}) + [ring/ring-jetty-adapter "1.4.0"] + [gered/clj-browserchannel "0.3"]]}})