-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
34 lines (34 loc) · 1.3 KB
/
project.clj
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
(defproject xyz.thoren/bibcal "1.1.3-SNAPSHOT"
:description (str "Calculate dates based on the Bible and the "
"1st Book of Enoch.")
:url "https://github.com/johanthoren/bibcal"
:license {:name "ISC"
:url "https://choosealicense.com/licenses/isc"
:comment "ISC License"
:year 2021
:key "isc"}
:dependencies [[org.clojure/clojure "1.10.3"]
[com.github.clj-easy/graal-build-time "0.1.4"]
[org.clojure/tools.cli "1.0.206"]
[trptcolin/versioneer "0.2.0"]
[tick "0.5.0-RC5"]
[clj-commons/fs "1.6.310"]
[xyz.thoren/luminary "0.7.3"]]
:plugins [[lein-kibit "0.1.8"]
[jonase/eastwood "1.2.3"]]
:main xyz.thoren.bibcal
:target-path "target/%s"
:aliases
{"lint"
["do" ["kibit"] ["eastwood"]]
"make-uberjars"
["do" ["test"] ["clean"] ["uberjar"]]}
:release-tasks [["lint"]
["test"]
["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]])