forked from Scarano/SymLearn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
24 lines (24 loc) · 1.09 KB
/
Copy pathproject.clj
File metadata and controls
24 lines (24 loc) · 1.09 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
(defproject genlearn "0.1.0-SNAPSHOT"
:description "Implementation of higher-order abstraction learning model."
:url "https://github.com/Scarano/SymLearn"
:license []
:target-path "bin"
:compile-path "%s"
:source-paths ["src"]
:java-source-paths ["src"]
:main genlearn.postsearch
:jvm-opts ["-Xmx6g" "-server"]
; :test-paths ["genlearn"]
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/tools.nrepl "0.2.10"]
[org.flatland/useful "0.11.3"]
[prismatic/plumbing "0.5.0"]
[org.apache.commons/commons-math3 "3.2"]
; [org.clojure/data.priority-map "0.0.7"]
[edu.stanford.nlp/stanford-corenlp "3.5.2"]
[org.clojure/tools.namespace "0.2.11"]
[clj-stacktrace "0.2.4"]]
; :resource-paths ["/Users/sam/workspace/stanford-classifier-2015-04-20/stanford-classifier.jar"]
:repl-options {;:init (require '(clojure.tools.namespace.repl :refer (refresh refresh-all)))
:skip-default-init false
:caught clj-stacktrace.repl/pst+})