This repository was archived by the owner on Jan 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
49 lines (46 loc) · 2.43 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
49
;; Copyright (c) 2020-2023 DINUM, Bastien Guerry <bastien.guerry@code.gouv.fr>
;; SPDX-License-Identifier: EPL-2.0
;; License-Filename: LICENSE
{:version "0.4.8"
:description "Consolidate data for https://code.gouv.fr"
:url "https://git.sr.ht/~codegouvfr/codegouvfr-consolidate-data"
:license {:name "Eclipse Public License - v 2.0"
:url "http://www.eclipse.org/legal/epl-v20.html"}
:deps {org.clojure/clojure {:mvn/version "1.11.3"}
borkdude/babashka {:mvn/version "0.2.6"}
metosin/jsonista {:mvn/version "0.3.9"}
org.clojure/data.csv {:mvn/version "1.1.0"}
hickory/hickory {:mvn/version "0.7.1"}
clojure.java-time/clojure.java-time {:mvn/version "1.4.2"}
net.mikera/core.matrix {:mvn/version "0.63.0"}
clj-rss/clj-rss {:mvn/version "0.4.0"}
com.taoensso/timbre {:mvn/version "6.5.0"}
datalevin/datalevin {:mvn/version "0.8.4"}
com.cognitect/transit-clj {:mvn/version "1.0.333"}
clj-commons/clj-yaml {:mvn/version "1.0.27"}
toml/toml {:mvn/version "0.1.4"}}
:aliases
{:run {:main-opts ["-m" "core"]
:jvm-opts ["--add-opens=java.base/java.nio=ALL-UNNAMED"
"--add-opens=java.base/sun.nio.ch=ALL-UNNAMED"]}
:uberdeps {:replace-deps {uberdeps/uberdeps {:mvn/version "1.3.0"}}
:main-opts ["-m" "uberdeps.uberjar"]}
:native-image
{:main-opts ["-m" "clj.native-image" "core"
;; "--verbose"
"--no-fallback"
"--report-unsupported-elements-at-runtime"
"--initialize-at-build-time"
;; Allow https
"-H:EnableURLProtocols=http,https"
;; "-H:+ReportExceptionStackTraces"
;; "-H:+TraceClassInitialization"
;; Optional native image name override
"-H:Name=codegouvfr-consolidate-data"]
:jvm-opts ["-Dclojure.compiler.direct-linking=true"
"--add-opens=java.base/java.nio=ALL-UNNAMED"
"--add-opens=java.base/sun.nio.ch=ALL-UNNAMED"]
:extra-deps
{clj.native-image/clj.native-image
{:git/url "https://github.com/taylorwood/clj.native-image.git"
:sha "4604ae76855e09cdabc0a2ecc5a7de2cc5b775d6"}}}}}