idmp-typesystem
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.averbis.textanalysis</groupId>
<artifactId>idmp-typesystem</artifactId>
<version>2.0.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>
<artifactId>idmp-typesystem</artifactId>
<name>${project.artifactId}</name>
<description>Type system for different IDMP documents</description>
<parent>
<groupId>de.averbis.textanalysis</groupId>
<artifactId>pharma-typesystems</artifactId>
<version>2.0.0</version>
</parent>
<dependencies>
<dependency>
<groupId>de.averbis.textanalysis</groupId>
<artifactId>pharma-concept-typesystem</artifactId>
<version>${project.version}</version>
</dependency>
<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>${core-typesystems-version}</version>
</dependency>
<dependency>
<groupId>de.averbis.textanalysis</groupId>
<artifactId>measurement-typesystem</artifactId>
<version>${core-typesystems-version}</version>
</dependency>
<dependency>
<groupId>de.averbis.textanalysis</groupId>
<artifactId>numeric-value-typesystem</artifactId>
<version>${core-typesystems-version}</version>
</dependency>
<dependency>
<groupId>de.averbis.textanalysis</groupId>
<artifactId>temporal-typesystem</artifactId>
<version>${core-typesystems-version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xml-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.uima</groupId>
<artifactId>jcasgen-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<typeSystemIncludes>
<typeSystemInclude>src/main/resources/de/averbis/textanalysis/typesystems/pharma/SmpcTypeSystem.xml</typeSystemInclude>
<typeSystemInclude>src/main/resources/de/averbis/textanalysis/typesystems/pharma/SmpcSectionTypeSystem.xml</typeSystemInclude>
<typeSystemInclude>src/main/resources/de/averbis/textanalysis/typesystems/pharma/IdmpTypeSystem.xml</typeSystemInclude>
<typeSystemInclude>src/main/resources/de/averbis/textanalysis/typesystems/pharma/Module3TypeSystem.xml</typeSystemInclude>
</typeSystemIncludes>
<limitToProject>true</limitToProject>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>