Skip to content

Commit

Permalink
Bump deps (incl. :dev Clojure 1.7.0-alpha1)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Sep 1, 2014
1 parent 1139ec0 commit 69b6d7b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 20 deletions.
19 changes: 12 additions & 7 deletions example-project/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,23 @@
*assert* true}

:dependencies
[[org.clojure/clojure "1.6.0"]
[;; [org.clojure/clojure "1.6.0"]
[org.clojure/clojure "1.7.0-alpha1"] ; May use any v1.5.1+
;;
[org.clojure/clojurescript "0.0-2268"]
[org.clojure/core.async "0.1.278.0-76b25b-alpha"]
[org.clojure/clojurescript "0.0-2322"]
[org.clojure/core.async "0.1.338.0-5c5012-alpha"]
;;
[com.taoensso/sente "0.15.1"] ; <--- Sente
[com.taoensso/timbre "3.2.1"]
;;
[http-kit "2.1.18"] ; <--- http-kit (currently required)
[http-kit "2.1.19"] ; <--- http-kit (currently required)
;;
[compojure "1.1.8"] ; Or routing lib of your choice
[ring "1.3.0"]
[ring "1.3.1"]
;; [ring-anti-forgery "1.0.0"]
[ring/ring-defaults "0.1.1"] ; Incl. `ring-anti-forgery`, etc.
[hiccup "1.0.5"] ; Optional, just for HTML
[org.clojure/core.match "0.2.1"] ; Optional but quite handly
[org.clojure/core.match "0.2.2"] ; Optional but quite handly
]

:plugins
Expand Down Expand Up @@ -53,4 +54,8 @@
;; connect to with Cider+emacs or your IDE of choice:
:aliases
{"build-once" ["do" "cljx" "once," "cljsbuild" "once"]
"start-dev" ["repl" ":headless"]})
"start-dev" ["repl" ":headless"]}

:repositories
[["sonatype" {:url "http://oss.sonatype.org/content/repositories/releases"
:snapshots false}]])
27 changes: 14 additions & 13 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
*assert* true}

:dependencies
[[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2268"]
[org.clojure/core.async "0.1.278.0-76b25b-alpha"]
[org.clojure/tools.reader "0.8.5"]
[com.taoensso/encore "1.7.0"]
[com.taoensso/timbre "3.2.1"]
[http-kit "2.1.18"]
[com.cognitect/transit-clj "0.8.247"]
[com.cognitect/transit-cljs "0.8.182"]]
[[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2322"]
[org.clojure/core.async "0.1.338.0-5c5012-alpha"]
[org.clojure/tools.reader "0.8.7"]
[com.taoensso/encore "1.7.1"]
[com.taoensso/timbre "3.2.1"]
[com.cognitect/transit-clj "0.8.247"]
[com.cognitect/transit-cljs "0.8.184"]
[http-kit "2.1.19"]]

:plugins
[[com.keminglabs/cljx "0.4.0"]
Expand All @@ -29,15 +29,16 @@
{;; :default [:base :system :user :provided :dev]
:server-jvm {:jvm-opts ^:replace ["-server"]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:test {:dependencies [[expectations "2.0.7"]
[org.clojure/test.check "0.5.8"]
:1.7 {:dependencies [[org.clojure/clojure "1.7.0-alpha1"]]}
:test {:dependencies [[expectations "2.0.9"]
[org.clojure/test.check "0.5.9"]
;; [com.cemerick/double-check "0.5.7"]
]
:plugins [[lein-expectations "0.0.8"]
[lein-autoexpect "1.2.2"]]}

:dev
[:1.6 :test
[:1.7 :test
{:plugins
[[lein-pprint "1.1.1"]
[lein-ancient "0.5.5"]
Expand Down Expand Up @@ -73,7 +74,7 @@
#(.replaceFirst (str %) "(.cljs$|.clj$)" ".cljx")}}

:aliases
{"test-all" ["with-profile" "default:+1.6" "expectations"]
{"test-all" ["with-profile" "default:+1.6:+1.7" "expectations"]
"test-auto" ["with-profile" "+test" "autoexpect"]
"build-once" ["do" "cljx" "once," "cljsbuild" "once"]
"deploy-lib" ["do" "build-once," "deploy" "clojars," "install"]
Expand Down

0 comments on commit 69b6d7b

Please sign in to comment.