-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profiles.clj
23 lines (17 loc) · 967 Bytes
/
profiles.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{:dev {:global-vars {*warn-on-reflection* true}
:target-path "target/%s"
:clean-targets ^{:protect false} [:target-path]
:dependencies [[ch.qos.logback/logback-classic "1.4.7"
:exclusions [org.slf4j/slf4j-api]]
[org.slf4j/jul-to-slf4j "2.0.7"]
[org.slf4j/jcl-over-slf4j "2.0.7"]
[org.slf4j/log4j-over-slf4j "2.0.7"]
[org.clojure/tools.logging "1.2.4"]]}
:provided {:dependencies [[org.clojure/clojure "1.11.1"]
[org.slf4j/log4j-over-slf4j "2.0.7"]]
:source-paths #{"src-clj"}
:java-source-paths #{"src-java"}
:resource-paths ["resources"]
:javac-options ["-source" "9" "-target" "9" "-g:none"]
:jar-exclusions [#"\.java", #"^moquette.conf$"]}
:jar {:aot :all}}