-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
17 lines (17 loc) · 846 Bytes
/
project.clj
File metadata and controls
17 lines (17 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject com.palletops/clj-docker "0.2.0"
:description "A clojure wrapper for the Docker API"
:url "https://github.com/palletops/clj-docker"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[com.palletops/api-builder "0.2.0"]
[org.apache.commons/commons-compress "1.5"]
[org.clojure/data.codec "0.1.0"]
[cheshire "5.3.1"]
[clj-http "1.0.1"]
[clj-time "0.8.0"]
[com.taoensso/timbre "3.1.6"]
[net.oauth.core/oauth "20100527"]]
:profiles {:provided {:dependencies [[org.clojure/clojure "1.6.0"]]}}
:plugins [[lein-shell "0.4.0"]]
:aliases {"doc" ["shell" "bundle" "exec" "jekyll" "serve" "--watch"]}
:global-vars {*warn-on-reflection* true})