Skip to content

Instantly share code, notes, and snippets.

@aekrylov

aekrylov/pom.xml Secret

Created May 1, 2017 10:12
Show Gist options
  • Save aekrylov/f8aa2684d44616d49862e948161a1513 to your computer and use it in GitHub Desktop.
Save aekrylov/f8aa2684d44616d49862e948161a1513 to your computer and use it in GitHub Desktop.
GettingStartedApp pom.xml
<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>
<groupId>com.textocat.textokit.examples</groupId>
<artifactId>textokit-getting-started</artifactId>
<version>0.1-SNAPSHOT</version>
<name>TextoKit example in Getting Started</name>
<dependencies>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-core</artifactId>
<version>2.10.0</version>
</dependency>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimafit-core</artifactId>
<version>2.3.0</version>
</dependency>
<!-- API that you will use in your app -->
<dependency>
<groupId>com.textocat.textokit.core</groupId>
<artifactId>textokit-lemmatizer-api</artifactId>
<version>${textokit.version}</version>
</dependency>
<dependency>
<groupId>com.textocat.textokit.core</groupId>
<artifactId>textokit-tokenizer-api</artifactId>
<version>${textokit.version}</version>
</dependency>
<dependency>
<groupId>com.textocat.textokit.core</groupId>
<artifactId>textokit-postagger-api</artifactId>
<version>${textokit.version}</version>
</dependency>
<dependency>
<groupId>com.textocat.textokit.core</groupId>
<artifactId>textokit-sentence-splitter-api</artifactId>
<version>${textokit.version}</version>
</dependency>
<dependency>
<groupId>com.textocat.textokit.core</groupId>
<artifactId>textokit-morph-dictionary-api</artifactId>
<version>${textokit.version}</version>
</dependency>
<dependency>
<groupId>com.textocat.textokit.core</groupId>
<artifactId>textokit-commons</artifactId>
<version>${textokit.version}</version>
</dependency>
<!-- analyzer implementations -->
<dependency>
<groupId>com.textocat.textokit.core</groupId>
<artifactId>textokit-tokenizer-simple</artifactId>
<version>${textokit.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.textocat.textokit.core</groupId>
<artifactId>textokit-sentence-splitter-heuristic</artifactId>
<version>${textokit.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.textocat.textokit.core</groupId>
<artifactId>textokit-morph-dictionary-opencorpora</artifactId>
<version>${textokit.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.textocat.textokit.core</groupId>
<artifactId>textokit-pos-tagger-opennlp</artifactId>
<version>${textokit.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.textocat.textokit.core</groupId>
<artifactId>textokit-lemmatizer-dictionary-sim</artifactId>
<version>${textokit.version}</version>
<scope>runtime</scope>
</dependency>
<!-- models, dictionaries, etc. -->
<dependency>
<groupId>com.textocat.textokit.core</groupId>
<artifactId>textokit-dictionary-opencorpora-resource</artifactId>
<classifier>rnc</classifier>
<version>0.1-20140407-1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.textocat.textokit.core</groupId>
<artifactId>textokit-pos-tagger-opennlp-model</artifactId>
<classifier>rnc1M-8cat</classifier>
<scope>runtime</scope>
<version>0.1-20151116-1</version>
</dependency>
<!-- logging implementation -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.2</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>21.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.5</version>
</dependency>
<dependency>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-tools</artifactId>
<version>1.7.2</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>textocat.releases</id>
<name>Textocat Artifactory-releases</name>
<url>http://corp.textocat.com/artifactory/oss-libs-releases-local/repositories/oss-libs-releases-local</url>
</repository>
</repositories>
<properties>
<!-- define in properties block of POM -->
<textokit.version>0.1</textokit.version>
</properties>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment