Repository: opennlp Updated Branches: refs/heads/master 418fe3848 -> 2284819f3
OPENNLP-1107: Fixes dependency on HighMemoryUsage. This closes #241. Project: http://git-wip-us.apache.org/repos/asf/opennlp/repo Commit: http://git-wip-us.apache.org/repos/asf/opennlp/commit/2284819f Tree: http://git-wip-us.apache.org/repos/asf/opennlp/tree/2284819f Diff: http://git-wip-us.apache.org/repos/asf/opennlp/diff/2284819f Branch: refs/heads/master Commit: 2284819f3d41a1bb2aff05eec62f3f8a46c6c63b Parents: 418fe38 Author: jzonthemtn <[email protected]> Authored: Mon Jul 3 09:01:45 2017 -0400 Committer: jzonthemtn <[email protected]> Committed: Mon Jul 3 09:01:45 2017 -0400 ---------------------------------------------------------------------- opennlp-morfologik-addon/pom.xml | 7 +++++++ opennlp-tools/pom.xml | 14 +++++++++++++- opennlp-uima/pom.xml | 7 +++++++ pom.xml | 7 +++++++ 4 files changed, 34 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/opennlp/blob/2284819f/opennlp-morfologik-addon/pom.xml ---------------------------------------------------------------------- diff --git a/opennlp-morfologik-addon/pom.xml b/opennlp-morfologik-addon/pom.xml index 3ce5e7c..144027b 100644 --- a/opennlp-morfologik-addon/pom.xml +++ b/opennlp-morfologik-addon/pom.xml @@ -59,6 +59,13 @@ </dependency> <dependency> + <groupId>org.apache.opennlp</groupId> + <artifactId>opennlp-tools</artifactId> + <type>test-jar</type> + <scope>test</scope> + </dependency> + + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> http://git-wip-us.apache.org/repos/asf/opennlp/blob/2284819f/opennlp-tools/pom.xml ---------------------------------------------------------------------- diff --git a/opennlp-tools/pom.xml b/opennlp-tools/pom.xml index a2cf596..1517336 100644 --- a/opennlp-tools/pom.xml +++ b/opennlp-tools/pom.xml @@ -77,7 +77,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> - <version>2.3.1</version> <configuration> <archive> <manifest> @@ -116,6 +115,19 @@ </instructions> </configuration> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> </build> </project> http://git-wip-us.apache.org/repos/asf/opennlp/blob/2284819f/opennlp-uima/pom.xml ---------------------------------------------------------------------- diff --git a/opennlp-uima/pom.xml b/opennlp-uima/pom.xml index d8f5246..73144f0 100644 --- a/opennlp-uima/pom.xml +++ b/opennlp-uima/pom.xml @@ -56,6 +56,13 @@ </dependency> <dependency> + <groupId>org.apache.opennlp</groupId> + <artifactId>opennlp-tools</artifactId> + <type>test-jar</type> + <scope>test</scope> + </dependency> + + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> http://git-wip-us.apache.org/repos/asf/opennlp/blob/2284819f/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index dee0533..2a56fcb 100644 --- a/pom.xml +++ b/pom.xml @@ -94,6 +94,13 @@ <groupId>${project.groupId}</groupId> <version>${project.version}</version> </dependency> + + <dependency> + <artifactId>opennlp-tools</artifactId> + <groupId>${project.groupId}</groupId> + <version>${project.version}</version> + <type>test-jar</type> + </dependency> <dependency> <artifactId>opennlp-uima</artifactId>
