nlp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>nlp</artifactId>
<version>1.3.10</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>
<artifactId>openimaj-text</artifactId>
<groupId>org.openimaj</groupId>
<version>1.3.10</version>
<relativePath>../</relativePath>
</parent>
<artifactId>nlp</artifactId>
<name>The OpenIMAJ NLP Library</name>
<inceptionYear>2011</inceptionYear>
<description>The OpenIMAJ NLP Library contains a text pre-processing pipeline which goes from raw unstructured text to part of speech tagged stemmed text.</description>
<dependencies>
<dependency>
<artifactId>core-rdf</artifactId>
<groupId>org.openimaj</groupId>
<version>1.3.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-tools</artifactId>
<version>1.5.2-incubating</version>
</dependency>
<dependency>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-uima</artifactId>
<version>1.5.2-incubating</version>
</dependency>
<dependency>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-maxent</artifactId>
<version>3.0.2-incubating</version>
</dependency>
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>core</artifactId>
<version>1.3.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>clustering</artifactId>
<version>1.3.10</version>
</dependency>
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>machine-learning</artifactId>
<version>1.3.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>uk.co.magus.fourstore</groupId>
<artifactId>4store-client</artifactId>
<version>1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.arabidopsis.ahocorasick</groupId>
<artifactId>ahocorasick</artifactId>
<version>2.x</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>twitter-text</artifactId>
<version>1.4.8</version>
</dependency>
<dependency>
<groupId>info.bliki.wiki</groupId>
<artifactId>bliki-core</artifactId>
<version>3.0.18</version>
</dependency>
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>core-math</artifactId>
<version>1.3.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.21</version>
</dependency>
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>test-resources</artifactId>
<version>1.3.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>4.0.0-ALPHA</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers-common</artifactId>
<version>4.0.0-ALPHA</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queryparser</artifactId>
<version>4.0.0-ALPHA</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<!-- Gson: Java to Json conversion -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.ostermiller</groupId>
<artifactId>utils</artifactId>
<version>1.07.00</version>
</dependency>
<dependency>
<groupId>gov.sandia.foundry</groupId>
<artifactId>gov-sandia-cognition-text-core</artifactId>
<version>3.3.0</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<header>src/etc/header.txt</header>
<strictCheck>true</strictCheck>
<properties>
<year>${project.inceptionYear}</year>
</properties>
<excludes>
<exclude>AUTHORS</exclude>
<exclude>COPYING</exclude>
<exclude>**/*.tff</exclude>
<exclude>**/*.bin</exclude>
<exclude>**/*.txt</exclude>
</excludes>
<mapping>
<jtemp>JAVADOC_STYLE</jtemp>
</mapping>
<useDefaultMapping>true</useDefaultMapping>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.6</version>
<configuration>
<argLine>-Xmx1G -Djava.awt.headless=true</argLine>
<!-- <parallel>classes</parallel><perCoreThreadCount>2</perCoreThreadCount>-->
</configuration>
</plugin>
<plugin>
<groupId>uk.ac.soton.ecs.jsh2</groupId>
<artifactId>jtemp-maven-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>