-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
38 lines (38 loc) · 2.05 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
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
metosin/jsonista {:mvn/version "0.3.9"}
com.github.vertical-blank/sql-formatter {:mvn/version "2.0.2"}}
:aliases
{:test {:extra-paths ["test"]
:extra-deps {lambdaisland/kaocha {:mvn/version "1.0.887"}
org.clojure/test.check {:mvn/version "1.1.0"}}
:main-opts ["-m" "kaocha.runner"]}
:portal {:extra-paths ["extra-src/portal"]
:extra-deps {djblue/portal {:mvn/version "0.58.2"}}
:main-opts ["-m" "app.portal"]}
:reveal {:extra-paths ["extra-src/reveal"]
:extra-deps {vlaaad/reveal {:mvn/version "1.3.212"}}
:main-opts ["-m" "app.reveal"]}
:uberjar-portal {:extra-deps {com.github.seancorfield/depstar {:mvn/version "2.1.278"}}
:exec-fn hf.depstar/uberjar
:exec-args {:jar "target/plv-portal.jar"
:aot true
:main-class app.portal
:compile-ns :all
:no-pom true
:aliases [:portal]
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]}}
:uberjar-reveal {:extra-deps {com.github.seancorfield/depstar {:mvn/version "2.1.278"}}
:exec-fn hf.depstar/uberjar
:exec-args {:jar "target/plv-reveal.jar"
:aot true
:main-class app.reveal
:compile-ns :all
:no-pom true
:aliases [:reveal]
:jvm-opts ["-Dclojure.compiler.direct-linking=true"
"-Dcljfx.skip-javafx-initialization=true"]}}
:cljfmt {:extra-deps {cljfmt/cljfmt {:mvn/version "0.8.0"}}
:main-opts ["-m" "cljfmt.main"]}
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2021.08.06"}}
:main-opts ["-m" "clj-kondo.main" "--lint" "src" "test"]}}}