-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdeps.edn
47 lines (42 loc) · 2.54 KB
/
deps.edn
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
37
38
39
40
41
42
43
44
45
46
47
{:deps {org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/data.json {:mvn/version "2.4.0"}
io.github.swirrl/grafter.io {:mvn/version "3.0.0"}
com.github.java-json-tools/uri-template {:mvn/version "0.10"}
org.apache.httpcomponents/httpcore {:mvn/version "4.4.16"}
org.martinklepsch/clj-http-lite {:mvn/version "0.4.3"}
org.clojure/tools.cli {:mvn/version "1.0.219"}
org.clojure/tools.logging {:mvn/version "1.2.4"}
org.slf4j/slf4j-api {:mvn/version "2.0.7"}}
:aliases {:cli {:main-opts ["-m" "csv2rdf.main"]}
:with-logging
{:extra-paths ["profiles/with-logging/resources"]
:extra-deps
{org.apache.logging.log4j/log4j-api {:mvn/version "2.20.0"}
org.apache.logging.log4j/log4j-core {:mvn/version "2.20.0"}
org.apache.logging.log4j/log4j-slf4j2-impl {:mvn/version "2.20.0"}}}
:dev {
:extra-deps {com.clojure-goes-fast/clj-async-profiler {:mvn/version "1.0.4"}}
:jvm-opts ["-Djdk.attach.allowAttachSelf" ;; for jdk9+
]
}
:test
{:extra-deps
{lambdaisland/kaocha {:mvn/version "1.85.1342"}
io.github.swirrl/grafter.repository {:mvn/version "3.0.0"}
lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"}
org.clojure/test.check {:mvn/version "1.1.1"}
org.clojure/data.csv {:mvn/version "1.0.1"}}
:extra-paths ["test" "test/resources"]
:main-opts ["-m" "kaocha.runner"]}
:build {:deps {io.github.seancorfield/build-clj {:git/tag "v0.6.3" :git/sha "9b8e09b"}
io.github.juxt/pack.alpha {:git/sha "802b3d6347376db51093d122eb4b8cf8a7bbd7cf"}
com.google.cloud.tools/jib-core {:mvn/version "0.23.0"}}
:ns-default build}
:docker {:jvm-opts ["-Xmx4g"
"-Dcom.sun.management.jmxremote.ssl=false"
"-Dcom.sun.management.jmxremote.authenticate=false"
"-Dcom.sun.management.jmxremote.port=3007"]
:main-opts ["-m" "csv2rdf.main"]}
:gen-test-suite {:extra-deps {org.clojure/data.csv {:mvn/version "1.0.1"}}
:extra-paths ["test" "test/resources"]
:exec-fn csv2rdf.w3c-csvw-suite-test.gen/write-tests-file}}}