forked from clj-kondo/clj-kondo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeps.edn
More file actions
51 lines (51 loc) · 2.54 KB
/
deps.edn
File metadata and controls
51 lines (51 loc) · 2.54 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{:paths ["src" "resources"]
:deps {rewrite-clj {:mvn/version "0.6.1"}
com.cognitect/transit-clj {:mvn/version "0.8.313"}}
:aliases {;; NOTE: build with script/compile
:native-image
{;; see: https://github.com/taylorwood/clj.native-image/issues/5#issuecomment-491188021
:jvm-opts ["-Dclojure.compiler.direct-linking=true"
"-Dclojure.spec.skip-macros=true"]
:main-opts ["-e" "(set!,*assert*,false)"
"-m clj.native-image clj-kondo.main"
"-H:Name=clj-kondo"
"-H:+ReportExceptionStackTraces"
"-J-Dclojure.spec.skip-macros=true"
"-J-Dclojure.compiler.direct-linking=true"
"-H:IncludeResources=clj_kondo/impl/cache/built_in/.*"
"-H:ReflectionConfigurationFiles=reflection.json"
"-H:Log=registerResource:"
"--verbose"
"--initialize-at-build-time"
"-J-Xmx3g"]
:extra-deps
#_{:clj.native-image
{:local/root "/Users/Borkdude/git/clj.native-image"}}
{clj.native-image
{:git/url "https://github.com/borkdude/clj.native-image.git"
:sha "cd7761b4ec88c2236b35830fd9cb0ef668699dae"}}
#_{clj.native-image
{:git/url "https://github.com/taylorwood/clj.native-image.git"
:sha "567176ddb0f7507c8b0969e0a10f60f848afaf7d"}}}
:test
{:extra-deps
{test-runner
{:git/url "https://github.com/cognitect-labs/test-runner"
:sha "cb96e80f6f3d3b307c59cbeb49bb0dcb3a2a780b"}
clj-commons/conch {:mvn/version "0.9.2"}}
:extra-paths ["test"]
:main-opts ["-m" "cognitect.test-runner"]}
:profiler
{:extra-deps
{com.clojure-goes-fast/clj-async-profiler {:mvn/version "0.3.1"}}
:extra-paths ["test"]
:jvm-opts ["-Djdk.attach.allowAttachSelf"]
:main-opts ["-m" "clj-kondo.profile"]}
:extract
{:extra-paths ["extract" "classes"]
:extra-deps {clj-commons/conch {:mvn/version "0.9.2"}
borkdude/eastwood {:git/url "https://github.com/borkdude/eastwood.git"
:sha "a6e2771d4c8920582b68ab49522ede33e344bb99"}}}
:cljs
{:extra-deps
{org.clojure/clojurescript {:mvn/version "1.10.520"}}}}}