-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproject.clj
More file actions
36 lines (27 loc) · 1.21 KB
/
project.clj
File metadata and controls
36 lines (27 loc) · 1.21 KB
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 io.aviso/logging "1.0"
:description "Clojure logging with Logback and SLF4J plus request correlation across servers."
:url "https://github.com/AvisoNovate/logging"
:license {:name "Apache Sofware License 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
:jvm-opts ^:replace ["-Xmx1G" "-Xms1G" "-XX:+UseG1GC" "-XX:-OmitStackTraceInFastThrow"]
:javac-options ["-target" "1.7" "-source" "1.7"]
:dependencies [[org.clojure/clojure "1.8.0"]
[org.slf4j/slf4j-api "1.7.30"]
[ch.qos.logback/logback-classic "1.2.3"]
[org.clojure/tools.logging "1.1.0"]
[io.aviso/pretty "1.1"]
[org.slf4j/jcl-over-slf4j "1.7.30"]]
:profiles
{:dev
{:dependencies
[[speclj "3.3.2" :exclusions [org.clojure/clojure]]]}}
:java-source-paths ["java-src"]
:plugins [[speclj "3.3.2"]
[lein-codox "0.10.7"]]
:test-paths ["spec"]
:aliases {"release" ["do"
"clean,"
"javac,"
"deploy" "clojars"]}
:codox {:metadata {:doc/format :markdown}
:source-uri "https://github.com/AvisoNovate/logging/blob/master/{filepath}#L{line}"})