Created
September 17, 2012 00:13
-
-
Save taylorSando/3734941 to your computer and use it in GitHub Desktop.
The intended settings for a lein 2 compatible clojurescript one project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defproject one "1.0.0-SNAPSHOT" | |
:description "Getting Started with ClojureScript." | |
:dependencies [[org.clojure/clojure "1.4.0"] | |
[ring "1.1.5"] | |
[compojure "1.1.3"] | |
[org.clojure/clojurescript "0.0-1450"] | |
[enlive "1.0.1"] | |
[domina "1.0.1-SNAPSHOT"] | |
[org.mozilla/rhino "1.7R3"] | |
[com.google.javascript/closure-compiler "r2079"] | |
[org.clojure/google-closure-library "0.0-1376-2"]] | |
:profiles {:dev {:dependencies [[lein-marginalia "0.7.1"]]}} | |
:repl-options { | |
:init-ns one.sample.repl | |
} | |
:source-paths ["src/app/clj" | |
"src/app/cljs" | |
"src/app/shared" | |
"src/app/cljs-macros" | |
"src/lib/clj" | |
"src/lib/cljs" | |
"templates"]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment