-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
21 lines (21 loc) · 952 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject net.b12n/swiza-sh "0.1.3"
:description "swiza-sh interact with shell from Clojure"
:url "http://github.com/agilecreativity/swiza-sh"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:plugins [[lein-cljfmt "0.6.4"]
[jonase/eastwood "0.3.6"]
[lein-auto "0.1.3"]
[lein-cloverage "1.1.2"]]
:dependencies [[net.b12n/swiza-commons "0.1.5"]
[org.clojars.hozumi/clj-commons-exec "1.2.0"]
[org.clojure/clojure "1.11.1"]]
:source-paths ["src/main/clojure"]
:java-source-paths ["src/main/java"]
:test-paths ["src/test/clojure"
"src/test/java"]
:target-path "target/%s"
:profiles {:dev {:global-vars {*warn-on-reflection* true}
:dependencies [[org.clojure/test.check "1.1.1"]
[jonase/eastwood "1.3.0"]]}
:uberjar {:aot :all}})