forked from dakrone/clojure-opennlp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
14 lines (13 loc) · 735 Bytes
/
project.clj
File metadata and controls
14 lines (13 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
(defproject clojure-opennlp "0.1.8-SNAPSHOT"
:description "Natural Language Processing with Clojure, library for opennlp.
http://github.com/dakrone/clojure-opennlp"
:dependencies [[org.clojure/clojure "1.3.0"]
[org.apache.opennlp/opennlp-tools "1.5.1-incubating"]]
:dev-dependencies [[slamhound "1.1.1"]
[lein-marginalia "0.6.0"]
[lein-multi "1.0.0"]]
:multi-deps {"1.2.1" [[org.clojure/clojure "1.2.1"]
[org.apache.opennlp/opennlp-tools "1.5.1-incubating"]]
"1.4.0" [[org.clojure/clojure "1.4.0-alpha1"]
[org.apache.opennlp/opennlp-tools "1.5.1-incubating"]]}
:jvm-opts ["-Xmx1024m"])