forked from clojure-finance/clojask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
33 lines (33 loc) · 1.83 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
(defproject com.github.clojure-finance/clojask "2.0.2"
:description "Data analysis and manipulation library with parallel computing for larger-than-memory datasets"
:url "https://github.com/clojure-finance/clojask"
:license {:name "MIT"
:url "https://github.com/clojure-finance/clojask/blob/1.x.x/LICENSE"}
:dependencies [[org.clojure/clojure "1.11.1"]
;; [org.clojure/math.numeric-tower "0.0.4"]
[org.clojure/data.csv "1.0.0"]
^{:voom {:repo "[email protected]:onyx-platform/onyx.git" :branch "master"}}
[com.github.clojure-finance/onyx "0.1.0"]
[com.taoensso/timbre "5.2.1"]
[io.aeron/aeron-client "1.40.0" :exclusions [org.agrona/agrona]]
[org.agrona/agrona "1.18.0"]
[io.aeron/aeron-all "1.40.0"]
;; [techascent/tech.ml.dataset "5.17" :exclusions [[ch.qos.logback/logback-classic][org.slf4j/slf4j-api]]]
[com.google.code.externalsortinginjava/externalsortinginjava "0.6.0"]
[com.github.clojure-finance/clojask-io "1.0.6"]
[com.github.clojure-finance/clojure-heap "1.0.3"]
[org.clojure/tools.analyzer "1.1.1"]]
:repl-options {:init-ns clojask.debug
:timeout 180000}
:plugins [[lein-update-dependency "0.1.2"]]
:main ^:skip-aot clojask.debug/-main
:source-paths ["src/main/clojure"]
:java-source-paths ["src/main/java"]
:javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"]
:jvm-opts ["-XX:+UseG1GC" "-server"
"--add-opens=java.base/java.lang=ALL-UNNAMED"
"--add-opens=java.base/sun.nio.ch=ALL-UNNAMED"]
:test-paths ["test/clojask"]
;:java-test-paths ["test/java"]
;;:injections [(.. System (setProperty "clojure.core.async.pool-size" "8"))]
)