forked from RallyTools/RallyRestAPIForClojure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
21 lines (18 loc) · 909 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 com.rallydev/clj-rally "0.7.5"
:description "A clojure library for interating with Rally's webservice API."
:url "https://github.com/RallyTools/RallyRestAPIForClojure"
:license {:name "MIT License"
:url "http://en.wikipedia.org/wiki/MIT_License"}
:dependencies [[camel-snake-kebab "0.3.1" :exclusions [org.clojure/clojure]]
[clj-http "1.1.1"]
[clj-time "0.9.0"]
[environ "1.0.0"]
[slingshot "0.12.2"]]
:jvm-opts ["-Xmx1g"]
:test-selectors {:default (complement :integration)
:integration :integration}
:plugins [[lein-pprint "1.1.1"]]
:profiles {:dev {:source-paths ["dev"]
:dependencies [[criterium "0.4.3"]
[org.clojure/clojure "1.7.0-RC1"]
[crypto-random "1.2.0"]]}})