-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdeps.edn
35 lines (35 loc) · 2.64 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
{:deps {org.clojure/clojure {:mvn/version "1.10.1"}
org.clojure/tools.logging {:mvn/version "0.5.0"}
org.clojure/data.csv {:mvn/version "0.1.4"}
ch.qos.logback/logback-classic {:mvn/version "1.2.3"}
http-kit/http-kit {:mvn/version "2.3.0"}
clojurewerkz/urly {:mvn/version "1.0.0"}
cheshire {:mvn/version "5.9.0"}}
:paths ["src"]
:mvn/repos {"central" {:url "https://repo1.maven.org/maven2/"}
"clojars" {:url "https://repo.clojars.org/"}}
:aliases {:test {:extra-paths ["test"]
:extra-deps {com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "028a6d41ac9ac5d5c405dfc38e4da6b4cc1255d5"}}
:main-opts ["-m" "cognitect.test-runner"]}
:dev {:extra-paths ["dev"]}
:kibit {:extra-deps {jonase/kibit {:mvn/version "0.1.6"}}
:main-opts ["-e" "(require,'[kibit.driver,:as,k])(k/external-run,[\"src\"],nil)"]}
:eastwood {:main-opts ["-m" "eastwood.lint" "{:source-paths,[\"src\"]}"]
:extra-deps {jonase/eastwood {:mvn/version "RELEASE"}}}
:uberjar {:extra-deps {luchiniatwork/cambada {:git/url "https://github.com/xfthhxk/cambada"
:sha "8fdc7d29a41620ad3e9e6210fd7140f3a4c7936b"
:exclusions [org.slf4j/slf4j-nop]}}
:main-opts ["-m" "cambada.uberjar"
"-m" "fast_url_check.java"]}
:native-image
{:extra-deps {luchiniatwork/cambada {:git/url "https://github.com/xfthhxk/cambada"
:sha "8fdc7d29a41620ad3e9e6210fd7140f3a4c7936b"
:exclusions [org.slf4j/slf4j-nop]}}
:main-opts ["-m" "cambada.native-image"
"-m" "fast_url_check.core"
"-a" "fast-url-check.core"
"-O" "-initialize-at-build-time"
"-O" "-enable-all-security-services"
"-O" "-initialize-at-run-time=org.httpkit.client.SslContextFactory"
"-O" "-initialize-at-run-time=org.httpkit.client.HttpClient"]}}}