forked from nathanmarz/storm-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
41 lines (34 loc) · 1.44 KB
/
project.clj
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
(defproject storm-deploy "0.0.6-SNAPSHOT"
:source-path "src/clj"
:test-path "test/clj"
:dev-resources-path "conf"
:run-aliases {:deploy backtype.storm.provision}
:main backtype.storm.provision
:repositories {
"sonatype" "https://oss.sonatype.org/content/repositories/releases"
"jclouds-snapshot" "https://oss.sonatype.org/content/repositories/snapshots"
}
:dependencies [
[storm "0.5.4"]
[commons-codec "1.4"]
[org.cloudhoist/pallet "0.7.2"]
[org.cloudhoist/pallet-jclouds "1.4.2"]
[org.cloudhoist/java "0.5.0"]
[org.cloudhoist/git "0.5.0"]
[org.cloudhoist/ssh-key "0.5.0"]
[org.cloudhoist/automated-admin-user "0.5.0"]
[org.cloudhoist/iptables "0.5.0"]
[org.cloudhoist/maven "0.5.0"]
[org.cloudhoist/zookeeper "0.5.1"]
[org.cloudhoist/nagios-config "0.5.0"]
[org.cloudhoist/crontab "0.5.0"]
[org.jclouds.driver/jclouds-sshj "1.4.2"]
[org.jclouds.provider/aws-ec2 "1.4.2"]
[org.jclouds.provider/aws-s3 "1.4.2"]
[log4j/log4j "1.2.14"]
[jvyaml "1.0.0"]]
:dev-dependencies [
; [swank-clojure "1.4.2"]
[org.cloudhoist/pallet-lein "0.5.2"]
]
)