-
Notifications
You must be signed in to change notification settings - Fork 6
/
project.clj
20 lines (20 loc) · 859 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-openstack "0.0.1-SNAPSHOT"
:description "Pure Clojure language bindings for OpenStack Clouds"
:url "https://github.com/oubiwann/clj-openstack"
: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.brainbot/iniconfig "0.2.0"]
[com.taoensso/timbre "3.0.0-RC2"]]
:repositories [["releases" {:url "https://clojars.org/repo"
:creds :gpg}]]
:repl-options {
:init-ns openstack.api}
:profiles {
:dev {
:dependencies [[org.clojure/tools.namespace "0.2.3"]
[org.clojure/java.classpath "0.2.0"]]}
:testing {
:dependencies [[leiningen "2.3.3"]]}})