8000 Updated docs, added marginalia as a dev plugin and removed docs direc… · dakrone/clojure-opennlp@e5c166d · GitHub
[go: up one dir, main page]

Skip to content

Commit e5c166d

Browse files
committed
Updated docs, added marginalia as a dev plugin and removed docs directory from .gitignore file
1 parent a7cca37 commit e5c166d

10 files changed

+24335
-3
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
lib/*
22
coref
33
classes/*
4-
docs/*
54
parser-model/en-parser-chunking.bin
65
.lein-failures
76
multi-lib/*

docs/opennlp.nlp.html

Lines changed: 3164 additions & 0 deletions
Large diffs are not rendered by default.

docs/opennlp.sample.html

Lines changed: 2986 additions & 0 deletions
Large diffs are not rendered by default.

docs/opennlp.span.html

Lines changed: 2994 additions & 0 deletions
Large diffs are not rendered by default.

docs/opennlp.tools.filters.html

Lines changed: 2976 additions & 0 deletions
Large diffs are not rendered by default.

docs/opennlp.tools.lazy.html

Lines changed: 2992 additions & 0 deletions
Large diffs are not rendered by default.

docs/opennlp.tools.train.html

Lines changed: 3080 additions & 0 deletions
Large diffs are not rendered by default.

docs/opennlp.treebank.html

Lines changed: 3194 additions & 0 deletions
Large diffs are not rendered by default.

docs/toc.html

Lines changed: 2946 additions & 0 deletions
Large diffs are not rendered by default.

project.clj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
(defproject clojure-opennlp "0.3.3"
1+
(defproject clojure-opennlp "0.3.4-SNAPSHOT"
22
:description "Natural Language Processing with Clojure, library for opennlp."
33
:url "http://github.com/dakrone/clojure-opennlp"
44
:min-lein-version "2.0.0"
55
:license {:name "Eclipse Public License"
66
:url "http://www.eclipse.org/legal/epl-v10.html"}
77
:dependencies [[org.apache.opennlp/opennlp-tools "1.5.3"]
88
[instaparse "1.3.4"]]
9-
:profiles {:dev {:dependencies [[org.clojure/clojure "1.6.0"]]}
9+
:profiles {:dev {:dependencies [[org.clojure/clojure "1.6.0"]]
10+
:plugins [[lein-marginalia "0.8.0"]]}
1011
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}}
1112
:aliases {"all" ["with-profile" "dev,1.5:dev"]}
1213
:jvm-opts ["-Xmx2048m"])

0 commit comments

Comments
 (0)
0