Browse Source

fixed component versions

Harlan Iverson 9 years ago
parent
commit
132462de55
5 changed files with 7 additions and 4 deletions
  1. 1 1
      core/project.clj
  2. 1 1
      ios-client/project.clj
  3. 2 1
      pubsub-service/project.clj
  4. 2 1
      visualizer/project.clj
  5. 1 0
      web-client/project.clj

+ 1 - 1
core/project.clj

@@ -1,5 +1,5 @@
 (defproject com.github.harlanji.clojure-stack/core "0.0.1-SNAPSHOT"
   :plugins [[lein-modules "0.3.11"]]
   :dependencies [[org.clojure/clojure "_"]
-                 [com.stuartsierra/component "_"]]
+                 [com.stuartsierra/component :component/clojure1.7+]]
   )

+ 1 - 1
ios-client/project.clj

@@ -7,4 +7,4 @@
   :aot :all
   :dependencies [[uikit "0.1.5"]
                  [galdolber/clojure-objc "_"]
-                 [com.stuartsierra/component "0.2.3"]])
+                 [com.stuartsierra/component :component/clojure1.2+]])

+ 2 - 1
pubsub-service/project.clj

@@ -8,7 +8,8 @@
                            [ring/ring-core "1.4.0"]
                            [ring/ring-json "0.4.0"]
                            [bidi "1.21.1"]
-                           [com.github.harlanji.clojure-stack/core "_"]]
+                           [com.github.harlanji.clojure-stack/core "_"]
+                           [com.stuartsierra/component :component/clojure1.7+]]
             :ring {:init pubsub.demo/init
                    :handler pubsub.demo/app}
 )

+ 2 - 1
visualizer/project.clj

@@ -4,4 +4,5 @@
   :license {:name "Eclipse Public License"
             :url "http://www.eclipse.org/legal/epl-v10.html"}
   :dependencies [[org.clojure/clojure "1.7.0"]
-                 [quil "2.3.0"]])
+                 [quil "2.3.0"]
+                 [com.stuartsierra/component :component/clojure1.7+]])

+ 1 - 0
web-client/project.clj

@@ -21,6 +21,7 @@
                   :exclusions [org.clojure/tools.reader]]
                  [speclj "3.3.1"]
                  [com.github.harlanji.clojure-stack/core "_"]
+                 [com.stuartsierra/component :component/clojure1.7+]
                  ]
 
   :plugins [[lein-environ "1.0.1"]