forked from incanter/incanter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
67 lines (63 loc) · 2.71 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
(defproject incanter "1.9.1-SNAPSHOT"
:description "Incanter is a Clojure-based, R-like statistical programming and data visualization environment."
:url "http://incanter.org/"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:scm {:name "git" :url "https://github.com/incanter/incanter"}
:min-lein-version "2.0.0"
:dependencies [[incanter/incanter-core "1.9.1-SNAPSHOT"]
[incanter/incanter-io "1.9.1-SNAPSHOT"]
[incanter/incanter-charts "1.9.1-SNAPSHOT"]
[incanter/incanter-mongodb "1.9.1-SNAPSHOT"]
[incanter/incanter-pdf "1.9.1-SNAPSHOT"]
[incanter/incanter-svg "1.9.1-SNAPSHOT"]
[incanter/incanter-latex "1.9.1-SNAPSHOT"]
[incanter/incanter-excel "1.9.1-SNAPSHOT"]
[incanter/incanter-sql "1.9.1-SNAPSHOT"]
[incanter/incanter-zoo "1.9.1-SNAPSHOT"]
[org.clojure/clojure "1.6.0"]
]
:plugins [[lein-sub "0.3.0"]
[lein-modules "0.3.8"]]
:sub ["modules/incanter-core"
"modules/incanter-io"
"modules/incanter-charts"
"modules/incanter-mongodb"
"modules/incanter-pdf"
"modules/incanter-svg"
"modules/incanter-latex"
"modules/incanter-excel"
"modules/incanter-sql"
"modules/incanter-zoo"
"."]
:modules {:dirs ["modules/incanter-core"
"modules/incanter-io"
"modules/incanter-charts"
"modules/incanter-mongodb"
"modules/incanter-pdf"
"modules/incanter-svg"
"modules/incanter-latex"
"modules/incanter-excel"
"modules/incanter-sql"
"modules/incanter-zoo"
"."]
:subprocess false}
:profiles {:dev {:resource-paths ["data"]}
:debug {:debug true}
:uberjar {:aot :all
:main incanter.main
:dependencies [[reply "0.3.4" :exclusions [org.clojure/clojure]]
[swingrepl "1.3.0"
:exclusions [org.clojure/clojure org.clojure/clojure-contrib]]
]
}
}
:repl-options {:init-ns incanter.irepl
:resource-paths ["data"]
:init (do
(set! *print-length* 500)
(use 'clojure.repl))
}
:jvm-opts ["-Xmx1g" "-Djsse.enableSNIExtension=false"
~(str "-Dincanter.home=" (System/getProperty "user.dir"))]
)