Created
September 17, 2012 18:54
-
-
Save taylorSando/3739098 to your computer and use it in GitHub Desktop.
project.clj settings for updated 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"] | |
[enlive "1.0.0"] | |
[domina "1.0.0"] | |
[org.mozilla/rhino "1.7R3"] | |
[com.google.javascript/closure-compiler "r1918"] | |
[org.clojure/google-closure-library "0.0-1376-2"]] | |
:dev-dependencies [[jline "0.9.94"] | |
[marginalia "0.7.0-SNAPSHOT"] | |
[lein-marginalia "0.7.0-SNAPSHOT"]] | |
:git-dependencies [["https://github.com/clojure/clojurescript.git" | |
"59665801d86d87fa4d46dd494bea719578b9b10d"]] | |
:repl-init one.sample.repl | |
:source-path "src/app/clj" | |
:extra-classpath-dirs [".lein-git-deps/clojurescript/src/clj" | |
".lein-git-deps/clojurescript/src/cljs" | |
"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