-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
executable file
·23 lines (23 loc) · 1.07 KB
/
project.clj
File metadata and controls
executable file
·23 lines (23 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(defproject pbrt "0.0.1"
:description "Clojure version of PBRT"
:plugins [[refactor-nrepl "2.4.0-SNAPSHOT"]
[cider/cider-nrepl "0.16.0-SNAPSHOT"]
[lein-expectations "0.0.8"]
[lein-autoexpect "1.9.0"]]
:url "https://github.com/Clojure2D/clojure2d-pbrt"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.9.0-beta1"]
[expectations "2.2.0-rc1"]
[criterium "0.4.4"]
[clojure2d "0.0.5-SNAPSHOT"]]
:java-source-paths ["src"]
:repl-options {:timeout 120000}
:target-path "target/%s"
:jvm-opts ["-Xmx4096M"
; "-Dcom.sun.management.jmxremote"
; "-Dcom.sun.management.jmxremote.ssl=false"
; "-Dcom.sun.management.jmxremote.authenticate=false"
; "-Dcom.sun.management.jmxremote.port=43210"
]
:profiles {:uberjar {:aot :all}})