You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opennlp.apache.org by co...@apache.org on 2016/12/26 14:10:27 UTC

opennlp git commit: Added Morfologik and Brat add-ons to pom.xml

Repository: opennlp
Updated Branches:
  refs/heads/trunk 3b150986e -> 8e488a514


Added Morfologik and Brat add-ons to pom.xml

Dependencies to Morfologik and Brat add-ons was missing in root pom.xml (dependencyManagement) and openly-distr pom (dependency). This was preventing the inclusion of the add-ons to the binary distribution.

See issue OPENNLP-895


Project: http://git-wip-us.apache.org/repos/asf/opennlp/repo
Commit: http://git-wip-us.apache.org/repos/asf/opennlp/commit/8e488a51
Tree: http://git-wip-us.apache.org/repos/asf/opennlp/tree/8e488a51
Diff: http://git-wip-us.apache.org/repos/asf/opennlp/diff/8e488a51

Branch: refs/heads/trunk
Commit: 8e488a51407d5a7275cb4b5babb4c5e96aa0af57
Parents: 3b15098
Author: William Colen <co...@apache.org>
Authored: Mon Dec 26 12:10:24 2016 -0200
Committer: William Colen <co...@apache.org>
Committed: Mon Dec 26 12:10:24 2016 -0200

----------------------------------------------------------------------
 opennlp-distr/pom.xml |  8 ++++++++
 pom.xml               | 12 ++++++++++++
 2 files changed, 20 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/opennlp/blob/8e488a51/opennlp-distr/pom.xml
----------------------------------------------------------------------
diff --git a/opennlp-distr/pom.xml b/opennlp-distr/pom.xml
index 13ee88f..91fb0f3 100644
--- a/opennlp-distr/pom.xml
+++ b/opennlp-distr/pom.xml
@@ -42,6 +42,14 @@
 			<groupId>org.apache.opennlp</groupId>
 			<artifactId>opennlp-uima</artifactId>
 		</dependency>
+		<dependency>
+            <groupId>org.apache.opennlp</groupId>
+            <artifactId>opennlp-morfologik-addon</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.opennlp</groupId>
+            <artifactId>opennlp-brat-annotator</artifactId>
+        </dependency>
 	</dependencies>
 
 	<build>

http://git-wip-us.apache.org/repos/asf/opennlp/blob/8e488a51/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index df60712..a890a2a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -98,6 +98,18 @@
 				<groupId>${project.groupId}</groupId>
 				<version>${project.version}</version>
 			</dependency>
+			
+			<dependency>
+                <artifactId>opennlp-brat-annotator</artifactId>
+                <groupId>${project.groupId}</groupId>
+                <version>${project.version}</version>
+            </dependency>
+
+            <dependency>
+                <artifactId>opennlp-morfologik-addon</artifactId>
+                <groupId>${project.groupId}</groupId>
+                <version>${project.version}</version>
+            </dependency>
 
 		</dependencies>
 	</dependencyManagement>