neural-typesystem
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.averbis.textanalysis</groupId>
<artifactId>neural-typesystem</artifactId>
<version>4.5.0</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>de.averbis.textanalysis</groupId>
<artifactId>core-typesystems</artifactId>
<version>4.5.0</version>
</parent>
<artifactId>neural-typesystem</artifactId>
<packaging>bundle</packaging>
<description>Type system for helper annotations for neural networks.</description>
<dependencies>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-core</artifactId>
<version>${uima-version}</version>
</dependency>
<dependency>
<groupId>de.averbis.textanalysis</groupId>
<artifactId>components-core-typesystem</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>de.averbis.textanalysis</groupId>
<artifactId>named-entity-typesystem</artifactId>
<version>${project.version}</version>
</dependency>
<!-- TESTS -->
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimafit-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Import-Package>
de.averbis.extraction.types,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>