forked from clojure/clojurescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
21 lines (21 loc) · 1.07 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(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 ["-Xmx512m" "-server"]
:source-paths ["src/clj"]
:resource-paths ["src/cljs"]
:test-paths ["test/clj"]
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/data.json "0.2.3"]
[org.clojure/tools.reader "0.8.10"]
[org.clojure/google-closure-library "0.0-20140718-946a7d39"]
[com.google.javascript/closure-compiler "v20140625"]
[org.mozilla/rhino "1.7R4"]]
:profiles {:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0-master-SNAPSHOT"]]}}
: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")