-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
32 lines (25 loc) · 1.19 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
(defproject kafka-deploy "0.0.1-SNAPSHOT"
:source-paths ["src/clj"]
:test-paths ["test/clj"]
:profiles {:dev {:resource-paths ["src/resource"]}}
:aliases {"deploy-kafka" ["run" "-m" "kafka.deploy.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.6.1"]
[org.cloudhoist/java "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/zookeeper "0.5.1"]
[org.cloudhoist/crontab "0.5.0"]
[org.jclouds.provider/aws-ec2 "1.0.0"]
[org.jclouds.provider/aws-s3 "1.0.0"]
[com.jcraft/jsch "0.1.44-1"] ; is this necessary?
[log4j/log4j "1.2.14"]]
:dev-dependencies [[swank-clojure "1.2.1"]
[org.cloudhoist/pallet-lein "0.2.0"]])