-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
38 lines (35 loc) · 1.51 KB
/
Copy pathproject.clj
File metadata and controls
38 lines (35 loc) · 1.51 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
(defproject topoged "1.0.0-SNAPSHOT"
:description "Topoged"
:target-dir "target/"
:source-paths ["src/main/clojure"]
:library-path "target/dependency"
:test-paths ["src/test/clojure" "src/test/resources"]
:resource-paths ["src/main/resources"]
:main topoged.viewer.frame
:jvm-opts [
"-server"
; "-Xms128M" "-Xmx256M"
;; Use these options in development to allow debugging
;; with jswat on localhost port 9900
;;"-Xdebug"
;;"-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=9900"
]
:dependencies [[org.clojure/clojure "1.10.0"]
[seesaw "1.4.3"]
[clj-glob "1.0.0"]
[org.clojure/data.codec "0.1.0"]
[org.clojure/core.logic "0.8.0-rc1"]
[quil "1.6.0"]
[slingshot "0.10.3"]
[clj-time "0.5.0"]
[com.taoensso/tower "2.0.0-beta5"]
[clojurewerkz/archimedes "1.0.0-alpha5"]
[com.tinkerpop.blueprints/blueprints-core "2.4.0"]
[com.tinkerpop.blueprints/blueprints-graph-jung "2.4.0"]
[clojurewerkz/ogre "2.3.0.1"]
[net.sf.jung/jung-graph-impl "2.0.1"]
[net.sf.jung/jung-visualization "2.0.1"]
[org.clojure/tools.trace "0.7.5"]
]
:dev-dependencies [;;[swank-clojure "1.4.0"]
[lein-eclipse "1.0.0"]])