integration
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.ikm.tinkar</groupId>
<artifactId>integration</artifactId>
<version>1.125.0</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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>dev.ikm.tinkar</groupId>
<artifactId>tinkar-core</artifactId>
<version>1.125.0</version>
</parent>
<artifactId>integration</artifactId>
<name>TINKAR Integration</name>
<properties>
<sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/target/site/jacoco/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
<skip.unit.tests>false</skip.unit.tests>
<skip.integration.tests>false</skip.integration.tests>
<tinkar-composer.version>1.12.0</tinkar-composer.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>dev.ikm.tinkar.ext.owl</groupId>
<artifactId>owl-extension</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>dev.ikm.tinkar.ext.binding</groupId>
<artifactId>binding-extension</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>changeset-writer-provider</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>composer</artifactId>
<version>${tinkar-composer.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.collections</groupId>
<artifactId>eclipse-collections</artifactId>
<version>${eclipse-collections-api.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.collections</groupId>
<artifactId>eclipse-collections-api</artifactId>
<version>${eclipse-collections-api.version}</version>
</dependency>
<dependency>
<groupId>dev.ikm.tinkar</groupId>
<artifactId>reasoner-elk-owl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>dev.ikm.tinkar</groupId>
<artifactId>reasoner-elk-snomed</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>dev.ikm.tinkar</groupId>
<artifactId>reasoner-hybrid</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>entity</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>composer</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>data-spinedarray-provider</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>data-ephemeral-provider</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>data-mvstore-provider</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>entity-provider</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>executor-provider</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>search-provider</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.collections</groupId>
<artifactId>eclipse-collections-api</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<scope>test</scope>
</dependency>
<!-- TODO: Delete with stale ITs -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>dev.ikm.tinkar.ext.owl</groupId>
<artifactId>owl-extension</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>dev.ikm.tinkar.ext.binding</groupId>
<artifactId>binding-extension</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>dev.ikm.tinkar</groupId>
<artifactId>reasoner-elk-owl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>dev.ikm.tinkar</groupId>
<artifactId>reasoner-elk-snomed</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>dev.ikm.tinkar</groupId>
<artifactId>reasoner-hybrid</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>dev.ikm.tinkar</groupId>
<artifactId>changeset-writer-provider</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>internal-integration-test-data</id>
<activation>
<property>
<name>!stageOSSRH</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>process-test-resources</phase>
<goals>
<goal>copy</goal>
</goals>
</execution>
</executions>
<configuration>
<artifactItems>
<artifactItem>
<groupId>dev.ikm.data.tinkar</groupId>
<artifactId>tinkar-starter-data</artifactId>
<version>${tinkar-starter-data.version}</version>
<classifier>reasoned-pb</classifier>
<type>zip</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/data</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>dev.ikm.data.tinkar</groupId>
<artifactId>tinkar-starter-data</artifactId>
<version>${tinkar-starter-data.version}</version>
<classifier>unreasoned-pb</classifier>
<type>zip</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/data</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>dev.ikm.data.tinkar</groupId>
<artifactId>tinkar-example-data</artifactId>
<version>${tinkar-example-data.version}</version>
<classifier>reasoned-pb</classifier>
<type>zip</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/data</outputDirectory>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.directory}/data</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>rename-file</id>
<phase>process-test-resources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<move file="${project.build.directory}/data/tinkar-starter-data-${tinkar-starter-data.version}-unreasoned-pb.zip"
tofile="${project.build.directory}/data/tinkar-starter-data-unreasoned-pb.zip" />
<move file="${project.build.directory}/data/tinkar-starter-data-${tinkar-starter-data.version}-reasoned-pb.zip"
tofile="${project.build.directory}/data/tinkar-starter-data-reasoned-pb.zip" />
<move file="${project.build.directory}/data/tinkar-example-data-${tinkar-example-data.version}-reasoned-pb.zip"
tofile="${project.build.directory}/data/tinkar-example-data-reasoned-pb.zip" />
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>