forked from io-tupelo/clj-template-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
34 lines (30 loc) · 1.1 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
(defproject demo "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [
[cambium/cambium.codec-simple "1.0.0"]
[cambium/cambium.core "1.0.0"]
[cambium/cambium.logback.core "0.4.4"]
[com.rpl/specter "1.1.3"]
[org.clojure/clojure "1.10.1"]
[prismatic/schema "1.1.12"]
[tupelo "20.12.01"]
]
:plugins [
[com.jakemccrary/lein-test-refresh "0.24.1"]
[lein-ancient "0.6.15"]
]
:global-vars {*warn-on-reflection* false}
:main ^:skip-aot demo.core
:source-paths ["src/clj"]
:java-source-paths ["src/java"]
:test-paths ["test/clj"]
:target-path "target/%s"
:compile-path "%s/class-files"
:clean-targets [:target-path]
:profiles {:dev {:dependencies [ ]}
:uberjar {:aot :all}}
:jvm-opts ["-Xms500m" "-Xmx2g" ]
)