-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
36 lines (27 loc) · 1.15 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
(defproject skiverse "0.0.0"
:description "A SKI universe"
:url "http://example.com/FIXME"
:license {:name "CC0 1.0 Universal"
:url "https://creativecommons.org/publicdomain/zero/1.0/"}
:repositories [["bintray" "https://jcenter.bintray.com/"]]
:dependencies [[org.clojure/clojure "1.10.1"]
[net.mikera/vectorz "0.67.0"]
[org.joml/joml "1.9.11"]
[org.clojure/tools.logging "1.0.0"]
[org.slf4j/slf4j-api "1.7.30"]
[log4j/log4j "1.2.17"]
[org.junit.jupiter/junit-jupiter "5.4.2" :scope "tests"]]
:jvm-opts ["-Xms1g" "-Xmx5g" "-server"]
:javac-options ["--release" "14" "--enable-preview" "-Xlint:preview"]
:omit-source true
:source-paths ["src/main/clojure"]
:java-source-paths ["src/main/java" "src/tests/java/"]
:resource-paths ["src/main/resources"]
:test-paths ["src/tests/java/"]
:test-selectors {:default (complement :integration)
:integration :integration
:all (constantly true)}
:jar-name "skiverse.jar"
:uberjar-name "skiverse-standalone.jar"
:aot :all
:main skiverse.main)