-
Notifications
You must be signed in to change notification settings - Fork 81
/
project.clj
16 lines (16 loc) · 896 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject clojure-opennlp "0.5.1-SNAPSHOT"
:description "Natural Language Processing with Clojure, library for opennlp."
:url "http://github.com/dakrone/clojure-opennlp"
:min-lein-version "2.0.0"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.apache.opennlp/opennlp-tools "1.9.0"]
[instaparse "1.4.9"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.9.0"]]
:plugins [[lein-marginalia "0.8.0"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}}
:aliases {"all" ["with-profile" "dev,1.5:dev,1.6:dev,1.7:dev,1.8:dev"]}
:jvm-opts ["-Xmx2048m"])