-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathproject.clj
28 lines (28 loc) · 1.49 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
(defproject clojure2d "1.5.0-SNAPSHOT"
:description "Creative coding / glitch library backed by Java2D"
:url "https://github.com/Clojure2D/clojure2d"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[generateme/fastmath "3.0.0-alpha3"]
[com.scrtwpns/mixbox "2.0.0"]
[org.apache.xmlgraphics/batik-transcoder "1.17"]]
:resource-path "resources/"
:java-source-paths ["src"]
:javac-options ["--release" "8"]
:prep-tasks [["compile" "fastmath.vector"] "javac"]
:scm {:name "git"
::url "https://github.com/Clojure2D/clojure2d.git"}
:repl-options {:timeout 120000}
:target-path "target/%s"
:profiles {:1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]}
:1.12 {:dependencies [[org.clojure/clojure "1.12.0"]]}
:eastwood {:plugins [[jonase/eastwood "1.4.2"]]
:eastwood {:add-linters [:performance :boxed-math]
:exclude-namespaces [notebooks.color]}}
:dev {:source-paths ["dev"]
:dependencies [[org.clojure/clojure "1.12.0"]
[io.github.nextjournal/clerk "0.13.842"]
[org.scicloj/clay "2-beta23"]]}
:dev-codox {:codox {:source-uri "https://github.com/Clojure2D/clojure2d/blob/master/{filepath}#L{line}"
:output-path "docs/codox/"}}
:uberjar {:aot :all}})