-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
28 lines (25 loc) · 1.49 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
(defproject com.circleci/deps-plus "0.1.0-SNAPSHOT"
:pedantic? :abort
:managed-dependencies [[org.clojure/clojure "1.10.1"]]
:profiles {:dev {:dependencies [[org.clojure/clojure]
[lambdaisland/kaocha "1.91.1392"]
[lambdaisland/kaocha-cloverage "1.1.89"]
[lambdaisland/kaocha-junit-xml "1.17.101"]]}
:provided {:dependencies [[org.clojure/clojure]
[com.google.guava/guava "32.0.1-jre"]
[org.jsoup/jsoup "1.15.3"]
[leiningen/leiningen "2.11.2" :exclusions [nrepl org.slf4j/slf4j-api]]]}}
:aliases {"test" ["run" "-m" "kaocha.runner"]
"test-ci" ["test"
"--plugin" "cloverage"
"--plugin" "kaocha.plugin/profiling"
"--plugin" "kaocha.plugin/junit-xml"
"--junit-xml-file" "target/test-results/results.xml"]}
:repositories [["releases" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_token
:sign-releases false}]
["snapshots" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_token
:sign-releases false}]])