Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
yogthos committed Nov 11, 2013
1 parent e7e9184 commit 375ce18
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject luminus/lein-template "1.10.4"
(defproject luminus/lein-template "1.10.6"
:description "a template for creating Luminus applications"
:url "https://github.com/yogthos/luminus-template"
:license {:name "Eclipse Public License"
Expand Down
7 changes: 3 additions & 4 deletions src/leiningen/new/luminus.clj
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@
(add-routes (sanitized-path "/handler.clj") 'cljs-routes)
(add-dependencies project-file
;;needed to get the latest version of ClojureScript until cljsbuild gets up to date
['org.clojure/tools.reader "0.7.10"]
['org.clojure/clojurescript "0.0-1978"]
['org.clojure/clojurescript "0.0-2030"]
['domina "1.0.2"]
['prismatic/dommy "0.1.2"]
['cljs-ajax "0.2.2"])
Expand All @@ -71,7 +70,7 @@

(defmethod post-process :+h2 [_ project-file]
(add-sql-dependencies project-file
['com.h2database/h2 "1.3.173"]))
['com.h2database/h2 "1.3.174"]))

(defmethod add-feature :+postgres [_]
(add-sql-files ["src/{{sanitized}}/models/schema.clj" (*render* "dbs/postgres_schema.clj")]))
Expand All @@ -91,7 +90,7 @@
[["src//{{sanitized}}/core.clj" (*render* "core.clj")]])

(defmethod post-process :+http-kit [_ project-file]
(add-dependencies project-file ['http-kit "2.1.11"])
(add-dependencies project-file ['http-kit "2.1.13"])
(add-to-project project-file :main (symbol (str *name* ".core"))))

(defmethod add-feature :+site [_]
Expand Down
6 changes: 3 additions & 3 deletions src/leiningen/new/luminus/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
[lib-noir "0.7.5"]
[compojure "1.1.6"]
[ring-server "0.3.1"]
[selmer "0.5.1"]
[com.taoensso/timbre "2.7.0"]
[selmer "0.5.2"]
[com.taoensso/timbre "2.7.1"]
[com.postspectacular/rotor "0.1.0"]
[com.taoensso/tower "1.7.1"]
[markdown-clj "0.9.33"]]
[markdown-clj "0.9.34"]]
:aot :all
:plugins [[lein-ring "0.8.7"]]
:ring {:handler {{name}}.handler/app
Expand Down

0 comments on commit 375ce18

Please sign in to comment.