forked from incanter/incanter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
34 lines (33 loc) · 1.5 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 incanter "1.5.5-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/liebke/incanter"}
:min-lein-version "2.0.0"
:dependencies [[incanter/incanter-core "1.5.5-SNAPSHOT"]
[incanter/incanter-io "1.5.5-SNAPSHOT"]
[incanter/incanter-charts "1.5.5-SNAPSHOT"]
[incanter/incanter-mongodb "1.5.5-SNAPSHOT"]
[incanter/incanter-pdf "1.5.5-SNAPSHOT"]
[incanter/incanter-svg "1.5.5-SNAPSHOT"]
[incanter/incanter-latex "1.5.5-SNAPSHOT"]
[incanter/incanter-excel "1.5.5-SNAPSHOT"]
[incanter/incanter-sql "1.5.5-SNAPSHOT"]
[incanter/incanter-zoo "1.5.5-SNAPSHOT"]
[org.clojure/clojure "1.5.1"]
[swingrepl "1.3.0"
:exclusions [org.clojure/clojure
org.clojure/clojure-contrib]]
[jline/jline "2.11"]]
:main incanter.main
:profiles {:dev {:resource-paths ["data"]}
:debug {:debug true}
}
:repl-options {:init-ns incanter.main
:init (do
(set! *print-length* 500)
(use 'clojure.repl))
}
:jvm-opts ["-Xmx1g"]
)