forked from oubiwann/clj-rackspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
20 lines (20 loc) · 857 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject clj-rackspace "0.1.2-SNAPSHOT"
:description "Pure Clojure language bindings for the Rackspace Cloud"
:url "https://github.com/oubiwann/clj-rackspace"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/data.json "0.2.3"]
[clj-http "0.7.7"]
[com.taoensso/timbre "3.0.0-RC2"]]
:repositories [["releases" {:url "https://clojars.org/repo"
:creds :gpg}]]
:repl-options {
:init-ns rackspace.api}
:profiles {
:dev {
:dependencies [[org.clojure/tools.namespace "0.2.3"]
[org.clojure/java.classpath "0.2.0"]]}
:testing {
:dependencies [[clj-http-fake "0.4.1"]
[leiningen "2.3.3"]]}})