reasoner
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.ikm.tinkar</groupId>
<artifactId>reasoner</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>reasoner</artifactId>
<packaging>pom</packaging>
<name>TINKAR Reasoner Service and Implementations</name>
<modules>
<module>reasoner-elk-owl</module>
<module>reasoner-elk-snomed</module>
<module>reasoner-elk-snomed-test</module>
<module>reasoner-hybrid</module>
<module>reasoner-service</module>
</modules>
<properties>
<reasoner-test-data.groupid>dev.ikm.reasoner-test-data</reasoner-test-data.groupid>
<skipITs>true</skipITs>
<snomed-test-data.groupid>dev.ikm.snomed</snomed-test-data.groupid>
<snomed-test-data.version>0.1.0</snomed-test-data.version>
<tinkar-test-data.version>2025.06.02</tinkar-test-data.version>
<!-- other plugins -->
<tidy-maven-plugin.version>1.4.0</tidy-maven-plugin.version>
<!-- <versions-maven-plugin.version>2.15.0</versions-maven-plugin.version> -->
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>dev.ikm.hybrid-reasoner</groupId>
<artifactId>hybrid-reasoner-snomed</artifactId>
<version>${hybrid-reasoner.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>reasoner-elk-snomed</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>dev.ikm.tinkar</groupId>
<artifactId>reasoner-service</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven-assembly-plugin.version}</version>
</plugin>
<!-- other plugins -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tidy-maven-plugin</artifactId>
<version>${tidy-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${maven.versions.plugin}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.9</version>
</requireMavenVersion>
<requireJavaVersion>
<version>${java.version}</version>
</requireJavaVersion>
</rules>
<fail>true</fail>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tidy-maven-plugin</artifactId>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<executions>
<execution>
<id>analyze</id>
<phase>validate</phase>
<goals>
<goal>display-dependency-updates</goal>
<goal>display-plugin-updates</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>analyze</id>
<goals>
<goal>analyze-only</goal>
</goals>
<configuration>
<ignoreUnusedRuntime>true</ignoreUnusedRuntime>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgs combine.self="override"></compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useModulePath>true</useModulePath>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
<argLine>@{surefireArgLine}</argLine> <!-- Sets the VM argument line used when unit tests are run.
Since version 2.17 use @{} syntax for these properties,
https://maven.apache.org/surefire/maven-surefire-plugin/faq.html#late-property-evaluation -->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<skipITs>${skipITs}</skipITs>
<useModulePath>true</useModulePath>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
<argLine>@{failsafeArgLine}</argLine> <!-- Sets the VM argument line used when integration tests are run.
Since version 2.17 use @{} syntax for these properties,
https://maven.apache.org/surefire/maven-surefire-plugin/faq.html#late-property-evaluation-->
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>