-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
12 lines (12 loc) · 740 Bytes
/
project.clj
File metadata and controls
12 lines (12 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
(defproject clojure-test-junit-output "0.1.0-SNAPSHOT"
:description "Make it easier to output your test results in JUnit format."
:url "https://github.com/conormcd/clojure-test-junit-output"
:license {:name "BSD"
:url "https://github.com/conormcd/clojure-test-junit-output/blob/master/LICENSE"}
:dependencies [[org.clojure/clojure "1.7.0"]
[robert/hooke "1.3.0"]]
:pedantic? :abort
:deploy-repositories ^:replace [["clojars" {:url "https://clojars.org/repo"
:username [:gpg :env/clojars_username]
:password [:gpg :env/clojars_password]
:sign-releases false}]])