-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
51 lines (44 loc) · 2.47 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
(defproject thi.ng/tweeny "0.1.0-SNAPSHOT"
:description "Keyframe animation & tweening functions for Clojure"
:url "http://thi.ng/tweeny"
:license {:name "Apache Software License 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"
:distribution :repo}
:scm {:name "git"
:url "git@github.com:thi-ng/tweeny.git"}
:min-lein-vesion "2.4.0"
:dependencies [[org.clojure/clojure "1.6.0"]]
:profiles {:dev {:dependencies [[org.clojure/clojurescript "0.0-2657"]
[criterium "0.4.3"]]
:plugins [[com.keminglabs/cljx "0.5.0"]
[lein-cljsbuild "1.0.4"]
[com.cemerick/clojurescript.test "0.3.3"]]
:global-vars {*warn-on-reflection* true}
:jvm-opts ^:replace []
:auto-clean false
:prep-tasks [["cljx" "once"]]
:aliases {"cleantest" ["do" "clean," "cljx" "once," "test," "cljsbuild" "test"]
"deploy" ["do" "clean," "cljx" "once," "deploy" "clojars"]}}}
:cljx {:builds [{:source-paths ["src/cljx"]
:output-path "target/classes"
:rules :clj}
{:source-paths ["src/cljx"]
:output-path "target/classes"
:rules :cljs}
{:source-paths ["test/cljx"]
:output-path "target/test-classes"
:rules :clj}
{:source-paths ["test/cljx"]
:output-path "target/test-classes"
:rules :cljs}]}
:cljsbuild {:builds [{:source-paths ["target/classes" "target/test-classes"]
:id "simple"
:compiler {:output-to "target/tweeny-0.1.0-SNAPSHOT.js"
:optimizations :whitespace
:pretty-print true}}]
:test-commands {"unit-tests" ["phantomjs" :runner "target/tweeny-0.1.0-SNAPSHOT.js"]}}
:jar-exclusions [#"\.cljx|\.DS_Store"]
:pom-addition [:developers [:developer
[:name "Karsten Schmidt"]
[:url "http://postspectacular.com"]
[:timezone "0"]]])