-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
61 lines (51 loc) · 2.67 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
52
53
54
55
56
57
58
59
60
61
(defproject quil "2.6.0"
:description "(mix Processing Clojure)"
:url "http://github.com/quil/quil"
:mailing-list {:name "Quil Mailing List"
:archive "https://groups.google.com/forum/?fromgroups#!forum/clj-processing"
:post "clj-processing@googlegroups.com"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[quil/processing-core "3.2.4"]
[quil/processing-pdf "3.2.4"]
[quil/processing-dxf "3.2.4"]
[quil/processing-svg "3.2.4"]
[quil/jogl-all-fat "2.3.2"]
[quil/gluegen-rt-fat "2.3.2"]
[quil/processing-js "1.6.4.1"]
[quil/processing-js "1.6.4.0"]
[com.lowagie/itext "2.1.7"]
; svg
[org.apache.xmlgraphics/batik-svggen "1.8"]
[org.apache.xmlgraphics/batik-dom "1.8"]]
:aot [quil.helpers.applet-listener quil.applet]
:test-selectors {:default (complement :manual)
:manual :manual
:set-0 #(= 0 (:test-set %))
:set-1 #(= 1 (:test-set %))
:set-2 #(= 2 (:test-set %))
:set-3 #(= 3 (:test-set %))}
:source-paths ["src/clj" "src/cljs" "src/cljc"]
:test-paths ["test/clj" "test/cljc"]
:resource-paths ["resources"]
:profiles {:dev {:dependencies [[hiccup "1.0.5"]
[compojure "1.5.2"]
[clj-http "3.4.1"]
[javax.servlet/servlet-api "2.5"]
[org.clojure/tools.reader "0.10.0"]]
:plugins [[lein-ring "0.11.0"]]}
:cljs-testing [:dev
{:hooks [leiningen.cljsbuild]
:plugins [[lein-cljsbuild "1.1.5"]]
:source-paths ["test/clj"]
:ring {:handler test-server/app}
:dependencies [[prismatic/dommy "1.1.0"]
[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.473"]]
:cljsbuild
{:builds [{:source-paths ["target/classes" "test/clj" "test/cljs" "test/cljc" "src/cljs"]
:compiler
{:output-to "target/js/main.js"
:optimizations :advanced
:pretty-print true}}]}}]})