-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
78 lines (61 loc) · 2.75 KB
/
project.clj
File metadata and controls
78 lines (61 loc) · 2.75 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
(def parent-version "6.7.13")
(defproject sixsq.nuvla/api "2.0.13-SNAPSHOT"
:description "nuvla clojure library"
:url "https://github.com/nuvla/clojure-library"
:license {:name "Apache 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0.txt"
:distribution :repo}
:plugins [[lein-parent "0.3.9"]
[lein-doo "0.1.11"]]
:parent-project {:coords [sixsq.nuvla/parent ~parent-version]
:inherit [:plugins
:min-lein-version
:managed-dependencies
:repositories
:deploy-repositories]}
:pom-location "target/"
:source-paths ["src/clj" "src/cljc"]
:clean-targets ^{:protect false} ["target" "out"]
:aot [sixsq.nuvla.client.api
sixsq.nuvla.client.authn]
:doo {:verbose true
:debug true}
:dependencies
[[log4j]
[com.cemerick/url]
[org.clojure/data.json]
[org.clojure/core.async]
[io.nervous/kvlt]]
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag" "--no-sign"]
["deploy" "clojars"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]]
:vcs :git
:cljsbuild {:builds [{:id "test"
:source-paths ["test/cljc" "test/cljs"]
:compiler {:main sixsq.nuvla.client.runner
:output-to "target/clienttest.js"
:output-dir "target"
:optimizations :whitespace}}]}
:profiles {:provided {:dependencies [[org.clojure/clojure]
[org.clojure/clojurescript]]
}
:test {
;:aot :all
:source-paths ["test/clj" "test/cljc"]
:resource-paths ["dev-resources"]
:plugins [[org.clojars.konstan/lein-test-report-sonar "0.0.4"]]
:test-report-sonar {:output-dir "test-reports"
:emit-junit-xml true}
:test-report-junit-xml {:output-dir "test-reports"}}
:dev {:dependencies [[com.fasterxml.jackson.core/jackson-databind "2.15.2"]
[clj-kondo "RELEASE"]]}}
:aliases {
;"test" ["do"
; ["test"]
; ["with-profiles" "test" ["doo" "nashorn" "test" "once"]]]
})