forked from dpctl/dpctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
49 lines (49 loc) · 2.14 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
(defproject org.dpctl/dpctl "0.2.4-SNAPSHOT"
:description "DataPower Control Tool"
:url "http://dpctl.org"
:scm {:name "git"
:url "https://github.com/dpctl/dpctl"}
:license {"name" "Eclipse Public License"
"url" "http://www.eclipse.org/legal/epl-v10.html"}
:jar-name "dpctl-%s.jar"
:uberjar-name "dpctl-standalone-%s.jar"
:source-paths ["src/main/clojure"]
:test-paths ["src/test/clojure"]
:resource-paths ["src/main/resources"]
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/data.codec "0.1.0"]
[org.clojure/data.json "0.2.6"]
[org.clojure/tools.cli "0.3.5"]
[org.clojure/tools.trace "0.7.9"]]
:main org.dpctl.core
:aot [org.dpctl.core org.dpctl.protocols.classpath.handler]
:auto-clean false
:repositories [["releases" {:url "https://clojars.org/repo"
:sign-releases false
:username :env/CLOJARS_USERNAME
:password :env/CLOJARS_PASSWORD}]
["snapshots" {:url "https://clojars.org/repo"
:sign-releases false
:username :env/CLOJARS_USERNAME
:password :env/CLOJARS_PASSWORD}]]
:manifest {:dpctl {"App-Version" ~(-> "project.clj" slurp read-string (nth 2))
"App-Build-Date" ~(java.util.Date.)}}
:profiles {:uberjar {:aot :all}
:test {:resource-paths ["src/test/resources"]}}
:plugins [[lein-bin "0.3.5"]
[lein-cljfmt "0.5.6"]
[lein-tar "3.3.0"]
[lein-cloverage "1.0.9"]]
:tar {:uberjar false
:format :tar-gz}
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag" "v" "--no-sign"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]
["vcs" "push" "--tags"]]
:bin {:name "dpctl"
:bin-path "~/bin"
:bootclasspath true})