forked from jenshweber/grape
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
19 lines (18 loc) · 738 Bytes
/
project.clj
File metadata and controls
19 lines (18 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject grape "0.1.0-SNAPSHOT"
:description "Graph Rewriting And Persistence Engine"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/math.combinatorics "0.1.1"]
[org.clojure/data.json "0.2.6"]
[dorothy "0.0.6"]
[org.clojure/data.codec "0.1.0"]
[prismatic/schema "1.0.5"]
[clojurewerkz/neocons "3.1.0"]
[com.taoensso/timbre "4.3.1"]
[environ "1.0.2"]]
:plugins [[lein-environ "1.0.2"]]
:profiles {:dev {}}
:jvm-opts ["-Xmx1g" "-server"]
)