forked from bmabey/clj-ml
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathproject.clj
29 lines (29 loc) · 2.21 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
(defproject cc.artifice/clj-ml "0.8.7"
:description "Machine Learning library for Clojure built around Weka and friends"
:java-source-paths ["src/java"]
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"}
:url "https://github.com/joshuaeckroth/clj-ml"
:dependencies [[org.clojure/clojure "1.8.0"]
[nz.ac.waikato.cms.weka/weka-dev "3.7.11"]
[nz.ac.waikato.cms.weka/chiSquaredAttributeEval "1.0.4" :exclusions [nz.ac.waikato.cms.weka/weka-dev]]
[nz.ac.waikato.cms.weka/attributeSelectionSearchMethods "1.0.7" :exclusions [nz.ac.waikato.cms.weka/weka-dev]]
[nz.ac.waikato.cms.weka/classifierBasedAttributeSelection "1.0.4" :exclusions [nz.ac.waikato.cms.weka/weka-dev]]
[nz.ac.waikato.cms.weka/linearForwardSelection "1.0.2" :exclusions [nz.ac.waikato.cms.weka/weka-dev nz.ac.waikato.cms.weka/classifierBasedAttributeSelection]]
[nz.ac.waikato.cms.weka/rotationForest "1.0.3" :exclusions [nz.ac.waikato.cms.weka/weka-dev]]
[nz.ac.waikato.cms.weka/paceRegression "1.0.2" :exclusions [nz.ac.waikato.cms.weka/weka-dev]]
[nz.ac.waikato.cms.weka/SPegasos "1.0.2" :exclusions [nz.ac.waikato.cms.weka/weka-dev]]
[nz.ac.waikato.cms.weka/racedIncrementalLogitBoost "1.0.2" :exclusions [nz.ac.waikato.cms.weka/weka-dev]]
[nz.ac.waikato.cms.weka/partialLeastSquares "1.0.4" :exclusions [nz.ac.waikato.cms.weka/weka-dev]]
[nz.ac.waikato.cms.weka/LibSVM "1.0.6" :exclusions [nz.ac.waikato.cms.weka/weka-dev tw.edu.ntu.csie/libsvm]]
[junit/junit "4.11"]
[tw.edu.ntu.csie/libsvm "3.17"]
[org.clojure/data.xml "0.0.8"]
[org.apache.lucene/lucene-analyzers-common "4.10.1"]
[org.apache.lucene/lucene-snowball "3.0.3"]]
:profiles {:dev {:plugins [[lein-midje "3.1.3"]]
:dependencies [[midje "1.6.3"]]}}
:codox {:output-dir "website/doc"
:src-dir-uri "http://github.com/joshuaeckroth/clj-ml/blob/master"
:src-linenum-anchor-prefix "L"}
:javac-options ["-Xlint:deprecation" "-Xlint:unchecked" "-target" "1.7" "-source" "1.7"])