-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
28 lines (26 loc) · 1.65 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
{:paths ["src"]
:deps {} ;; This part intentionally left empty
:aliases {:dev {:extra-deps {org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/clojurescript {:mvn/version "1.11.60"}}}
:test {:extra-paths ["test" "test-resource"]
:extra-deps {lambdaisland/kaocha {:mvn/version "1.71.1119"}
lambdaisland/kaocha-cljs {:mvn/version "1.4.130"}
lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"}
org.clojure/test.check {:mvn/version "1.1.1"}
org.clojure/data.json {:mvn/version "2.4.0"}}}
; clojure -M:outdated --upgrade
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.1.946"}}
:main-opts ["-m" "antq.core"]}
:depstar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.1.303"}}
:exec-fn hf.depstar/jar
:exec-args {:sync-pom true
:group-id "taipei.404"
:artifact-id "mate"
:version "0.0.9"
:jar "mate.jar"}}}}
;; Memo for deploying a new release:
;; - Change the version above, then build the jar:
;; clojure -X:depstar
;; - add a tag "v0.x.y" to the latest commit and push to repo
;; - deploy:
;; mvn deploy:deploy-file -Dfile=mate.jar -DpomFile=pom.xml -DrepositoryId=clojars -Durl=https://clojars.org/repo/