-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
39 lines (34 loc) · 1.47 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
{:paths ["src"]
:mvn/repos {"acn-snapshots" {:url "https://repo.deps.co/aircraft-noise/snapshots"}
"acn-releases" {:url "https://repo.deps.co/aircraft-noise/releases"}}
:deps
{org.clojure/clojure {:mvn/version "1.10.3"}
org.clojure/data.json {:mvn/version "2.4.0"}
clojure.java-time/clojure.java-time {:mvn/version "0.3.3"}
org.threeten/threeten-extra {:mvn/version "1.7.0"}
org.postgresql/postgresql {:mvn/version "42.2.23"}
net.postgis/postgis-jdbc {:mvn/version "2021.1.0"}
com.github.seancorfield/next.jdbc {:mvn/version "1.2.709"}
factual/geo {:mvn/version "3.0.1"}
}
:aliases
{:mvn/artifact-id coerce
:mvn/group-id com.dcj
:mvn/version "0.1.3-SNAPSHOT"
:jar/file-name "coerce.jar"
:jar {:replace-deps
{com.github.seancorfield/depstar {:mvn/version "2.0.216"}}
:exec-fn hf.depstar/jar
:exec-args {:jar :jar/file-name
:artifact-id :mvn/artifact-id
:group-id :mvn/group-id
:version :mvn/version
:sync-pom true}}
:deploy {:extra-deps {com.dcj/deps-deploy {:mvn/version "2.0.999-SNAPSHOT"}}
:exec-fn deps-deploy.deps-deploy/deploy
:exec-args {:installer :remote
:sign-releases? false
:artifact :jar/file-name
:repository "acn-snapshots"}}
}
}