-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
34 lines (30 loc) · 1.46 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
(defproject acyclic/girder "0.2.0-SNAPSHOT"
:author "Peter Fraenkel <http://podsnap.com>"
:description "Distributed re-entrant grid"
:url "http://github.com/pnf/girder"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:repositories [["sonatype" {:url "https://oss.sonatype.org/content/repositories/snapshots"
:update :always}]]
:dependencies [[org.clojure/clojure "1.6.0"]
[digest "1.4.4"]
[clj-time "0.7.0"]
;;[amazonica "0.2.25" :exclusions [[com.taoensso/nippy]]];; so we get the version of nippy needed by timbre
[clj-ssh "0.5.10"]
;[org.clojure/core.async "0.1.303.0-886421-alpha" :exclusions [[org.clojure/core.cache]]]
;[org.clojure/core.async "0.1.303.0-886421-alpha"]
[org.clojure/core.async "0.1.338.0-5c5012-alpha"]
;[org.clojure/core.cache "0.6.5"]
;[acyclic.core.cache "0.6.5-pnf-SNAPSHOT"]
[com.taoensso/timbre "3.3.1"]
[acyclic/utils "0.1.0-SNAPSHOT"]
[acyclic/awstools "0.1.0-SNAPSHOT"]
[com.taoensso/carmine "2.7.0"]
[com.draines/postal "1.11.1"] ;so timbre/carmine works
]
:jvm-opts ^:replace ["-Xmx1g" "-server" ]
:source-paths ["src"]
:test-paths ["test"]
:aot [acyclic.girder.testutils.grid]
:uberjar-name "girder.jar"
)