-
Notifications
You must be signed in to change notification settings - Fork 135
/
project.clj
24 lines (24 loc) · 1.16 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
(defproject jonase/kibit (clojure.string/trim-newline (slurp "resources/jonase/kibit/VERSION"))
:description "There's a function for that!"
:url "https://github.com/clj-commons/kibit"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "Contact if any questions"}
:scm {:name "git"
:url "https://github.com/clj-commons/kibit"
:connection "scm:git:git://github.com/clj-commons/kibit.git"
:developerConnection "scm:git:ssh://[email protected]/clj-commons/kibit.git"}
:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/core.logic "1.1.0"]
[org.clojure/tools.cli "1.1.230"]
[rewrite-clj "1.1.47"]
[borkdude/edamame "1.4.25"]]
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:sign-releases false}]
["snapshots" :clojars]]
:aliases {"test-all" ["do"
["clean"]
["test"]
["clean"]
["compile" ":all"]]})