-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
49 lines (41 loc) · 2.12 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
48
{:mvn/repos {"redplanetlabs" {:url "https://nexus.redplanetlabs.com/repository/maven-public-releases"}}
:paths ["src" "resources" "config"]
:aliases
{:test {:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test}
:build {:deps {io.github.clojure/tools.build {:git/tag "v0.10.5"
:git/sha "2a21b7a"}}
:ns-default build}
:dev {:extra-deps {djblue/portal {:mvn/version "0.57.3"}
io.github.nextjournal/clerk {:mvn/version "0.17.1102"}}
:jvm-opts [#_"-agentpath:/Applications/YourKit-Java-Profiler-2024.3.app/Contents/Resources/bin/mac/libyjpagent.dylib=disablestacktelemetry,exceptions=disable,delay=10000"
"-XX:+UseZGC"
"-XX:+ZGenerational"
"-XX:MaxRAMPercentage=50"
"-Djdk.attach.allowAttachSelf"
"-Djava.security.manager=allow"]}}
;; https://nrepl.org/nrepl/installation.html#jvmti
:jvm-opts ["-XX:+UseZGC"
"-XX:+ZGenerational"
"-XX:MaxRAMPercentage=75"
"-Djava.security.manager=allow"]
;; reference for "-Djava.security.manager=allow" (requried in JDK 23+)
;; https://cwiki.apache.org/confluence/display/KAFKA/KIP-1006%3A+Remove+SecurityManager+Support
;; https://openjdk.org/jeps/411
;; https://github.com/quarkusio/quarkus/issues/39634
;;
:deps
{ch.qos.logback/logback-classic {:mvn/version "1.5.0"}
org.clojure/clojure {:mvn/version "1.12.0"}
io.github.clingen-data-model/genegraph-framework
{:git/sha "9cebf6798495c8052df4c6133b3edde311dfe91c"}
com.walmartlabs/lacinia-pedestal {:mvn/version "1.3"}
hato/hato {:mvn/version "0.9.0"}
org.clojure/data.csv {:mvn/version "1.0.1"}
org.clojure/data.zip {:mvn/version "1.0.0"}
org.clojure/data.xml {:mvn/version "0.0.8"}
}
}