105 lines
3.8 KiB
Plaintext
105 lines
3.8 KiB
Plaintext
|
<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>org.languagetool</groupId>
|
||
|
<artifactId>languagetool-parent</artifactId>
|
||
|
<version>4.2</version>
|
||
|
<relativePath>../../pom.xml</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>language-en</artifactId>
|
||
|
<url>http://www.languagetool.org</url>
|
||
|
<name>English module for LanguageTool</name>
|
||
|
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>GNU Lesser General Public License</name>
|
||
|
<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
|
||
|
<distribution>repo</distribution>
|
||
|
<comments>The license refers to the source code, resources may be under different licenses</comments>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<developers>
|
||
|
<developer>
|
||
|
<name>Daniel Naber</name>
|
||
|
<roles><role>Maintainer</role></roles>
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<name>Marcin Miłkowski</name>
|
||
|
<roles><role>Maintainer</role></roles>
|
||
|
</developer>
|
||
|
</developers>
|
||
|
|
||
|
<build>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<excludes>
|
||
|
<exclude>org/languagetool/resource/en/manually_added.txt</exclude>
|
||
|
<exclude>org/languagetool/resource/en/partlycountable.txt</exclude>
|
||
|
<exclude>org/languagetool/resource/en/uncountable.txt</exclude>
|
||
|
<exclude>org/languagetool/resource/en/filter*.txt</exclude>
|
||
|
<exclude>org/languagetool/resource/en/*.awk</exclude>
|
||
|
<exclude>org/languagetool/resource/en/numbers.txt</exclude>
|
||
|
</excludes>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.languagetool</groupId>
|
||
|
<artifactId>languagetool-core</artifactId>
|
||
|
<version>${languagetool.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.opennlp</groupId>
|
||
|
<artifactId>opennlp-tools</artifactId>
|
||
|
<version>1.7.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>edu.washington.cs.knowitall</groupId>
|
||
|
<artifactId>opennlp-tokenize-models</artifactId>
|
||
|
<version>1.5</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>edu.washington.cs.knowitall</groupId>
|
||
|
<artifactId>opennlp-postag-models</artifactId>
|
||
|
<version>1.5</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>edu.washington.cs.knowitall</groupId>
|
||
|
<artifactId>opennlp-chunk-models</artifactId>
|
||
|
<version>1.5</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<!-- see http://stackoverflow.com/questions/174560/sharing-test-code-in-maven#174670 -->
|
||
|
<groupId>org.languagetool</groupId>
|
||
|
<artifactId>languagetool-core</artifactId>
|
||
|
<version>${languagetool.version}</version>
|
||
|
<type>test-jar</type>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>${junit.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|