opennlp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>uk.ac.gate.plugins</groupId>
<artifactId>opennlp</artifactId>
<version>8.5</version>
</dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>uk.ac.gate</groupId>
<artifactId>gate-plugin-base</artifactId>
<!-- this should be the version of GATE you wish to build against -->
<version>8.5</version>
<relativePath>../../Plugin_Base/pom.xml</relativePath>
</parent>
<!-- this is the description of this plugin -->
<groupId>uk.ac.gate.plugins</groupId>
<artifactId>opennlp</artifactId>
<version>8.5</version>
<name>OpenNLP</name>
<description>GATE wrappers for the OpenNLP tool set</description>
<licenses>
<license>
<name>GNU Lesser General Public License (LGPL), Version 3</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>GATE</name>
<url>http://gate.ac.uk</url>
</organization>
<developers>
<developer>
<id>gate-team</id>
<name>GATE Team</name>
<email>gate-developers@lists.sourceforge.net</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/GateNLP/gateplugin-OpenNLP.git</connection>
<developerConnection>scm:git:git@github.com:GateNLP/gateplugin-OpenNLP.git</developerConnection>
<url>https://github.com/GateNLP/gateplugin-OpenNLP</url>
</scm>
<dependencies>
<!-- add any other libraries your plugin depends on. Any other GATE plugins
you depend on at compile time should use the provided scope -->
<dependency>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-maxent</artifactId>
<version>3.0.2-incubating</version>
</dependency>
<dependency>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-tools</artifactId>
<version>1.5.2-incubating</version>
<exclusions>
<!-- prior to being a maven plugin we only used
the main jar so we don't need any dependencies -->
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>