forked from clojure/clojurescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
23 lines (23 loc) · 1.3 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(defproject org.clojure/clojurescript "0.0-SNAPSHOT"
:description "ClojureScript compiler and core runtime library"
:parent [org.clojure/pom.contrib "0.1.2"]
:url "https://github.com/clojure/clojurescript"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:jvm-opts ^:replace ["-Dclojure.compiler.direct-linking=true" "-Xmx512m" "-server"]
:source-paths ["src/main/clojure" "src/main/cljs"]
:resource-paths ["src/main/cljs"]
:test-paths ["src/test/clojure" "src/test/cljs" "src/test/self" "src/test/cljs_cp"]
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/data.json "0.2.6"]
[org.clojure/tools.reader "1.1.0"]
[org.clojure/test.check "0.10.0-alpha2" :scope "test"]
[com.cognitect/transit-clj "0.8.300"]
[org.clojure/google-closure-library "0.0-20170809-b9c14c6b"]
[com.google.javascript/closure-compiler-unshaded "v20170910"]
[org.mozilla/rhino "1.7R5"]]
:profiles {:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:uberjar {:aot :all :main clojure.main}}
:aliases {"test-all" ["with-profile" "test,1.5:test,1.6" "test"]
"check-all" ["with-profile" "1.5:1.6" "check"]}
:min-lein-version "2.0.0")