forked from pallet/pallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
41 lines (38 loc) · 1.84 KB
/
project.clj
File metadata and controls
41 lines (38 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
(defproject com.palletops/pallet "0.8.13-SNAPSHOT"
:description
"DevOps for the JVM.
Pallet is a platform for agile and programmatic automation of infrastructure
in the cloud, on server racks or directly on virtual machines. Pallet
provides cloud provider and operating system independence, and allows for an
unprecedented level of customization."
:url "http://palletops.com"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:scm {:url "git@github.com:pallet/pallet.git"}
:dependencies [[org.clojure/core.incubator "0.1.0"]
[org.clojure/tools.logging "0.2.0"]
[org.clojure/tools.macro "0.1.2"]
[org.clojure/tools.cli "0.2.2"]
[org.clojure/algo.monads "0.1.0"]
[com.palletops/chiba "0.2.0"]
[com.palletops/thread-expr "1.3.0"]
[com.palletops/pallet-common "0.4.0"]
[com.palletops/pallet-repl "0.8.0-beta.2"
:exclusions [com.palletops/pallet]]
[com.palletops/script-exec "0.4.2"]
[com.palletops/stevedore "0.8.0-beta.7"]
[clj-ssh "0.5.14"]
[enlive "1.0.1"
:exclusions [org.clojure/clojure]]
[pallet-fsmop "0.3.1"
:exclusions [org.clojure/tools.logging]]
[pallet-map-merge "0.1.1"]
[org.clojars.runa/clj-schema "0.9.4"]
[prismatic/schema "1.0.4"]
[org.flatland/useful "0.10.3"]
[commons-codec "1.4"]]
:classifiers {:tests {:source-paths ^:replace ["test"]
:resource-paths ^:replace []}}
:test-selectors {:default
;; travis sudo is configured with !env_reset
(complement :require-no-ssh-env)})