robot-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.obolibrary.robot</groupId> <artifactId>robot-core</artifactId> <version>1.9.1</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>org.obolibrary.robot</groupId> <artifactId>robot</artifactId> <version>1.9.1</version> </parent> <artifactId>robot-core</artifactId> <name>robot-core</name> <description>Core library for ROBOT: Library for working with OWL ontologies, especially Open Biological and Biomedical Ontologes (OBO).</description> <properties> <scala.version>2.13</scala.version> </properties> <build> <plugins> <!-- Enforce Google Java Style --> <plugin> <groupId>com.coveo</groupId> <artifactId>fmt-maven-plugin</artifactId> <version>2.9</version> <executions> <execution> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> <!-- Ensure backward compatibility --> <plugin> <groupId>com.github.siom79.japicmp</groupId> <artifactId>japicmp-maven-plugin</artifactId> <version>0.15.4</version> <configuration> <oldVersion> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.artifactId}</artifactId> <version>1.9.0</version> <!-- japicmp target --> <type>jar</type> </dependency> </oldVersion> <newVersion> <file> <path>${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging}</path> </file> </newVersion> <parameter> <!-- see documentation: http://siom79.github.io/japicmp/MavenPlugin.html --> <breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications> <breakBuildOnSourceIncompatibleModifications>true</breakBuildOnSourceIncompatibleModifications> <!-- include on breaking changes <excludes></excludes> --> </parameter> </configuration> <executions> <execution> <phase>verify</phase> <goals> <goal>cmp</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>31.1-jre</version> </dependency> <dependency> <groupId>net.sourceforge.owlapi</groupId> <artifactId>owlapi-api</artifactId> <version>4.5.6</version> <exclusions> <exclusion> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>net.sourceforge.owlapi</groupId> <artifactId>owlapi-apibinding</artifactId> <version>4.5.6</version> <exclusions> <exclusion> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>net.sourceforge.owlapi</groupId> <artifactId>owlapi-rio</artifactId> <version>4.5.6</version> <exclusions> <exclusion> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.jena</groupId> <artifactId>jena-arq</artifactId> <version>3.17.0</version> <exclusions> <exclusion> <groupId>com.github.jsonld-java</groupId> <artifactId>jsonld-java</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.jena</groupId> <artifactId>jena-tdb</artifactId> <version>3.17.0</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>5.0.0</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>5.0.0</version> <exclusions> <exclusion> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-all</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.github.jsonld-java</groupId> <artifactId>jsonld-java</artifactId> <version>0.13.2</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </exclusion> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </exclusion> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore-osgi</artifactId> </exclusion> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient-osgi</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>1.32</version> </dependency> <dependency> <groupId>com.opencsv</groupId> <artifactId>opencsv</artifactId> <version>5.3</version> </dependency> <dependency> <groupId>org.geneontology</groupId> <artifactId>expression-materializing-reasoner</artifactId> <version>0.1.3</version> <exclusions> <exclusion> <groupId>net.sourceforge.owlapi</groupId> <artifactId>owlapi-distribution</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.geneontology.obographs</groupId> <artifactId>obographs-owlapi</artifactId> <version>0.3.0</version> <exclusions> <exclusion> <groupId>net.sourceforge.owlapi</groupId> <artifactId>owlapi-distribution</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.12.2</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>2.12.2</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.12.2</version> </dependency> <dependency> <groupId>net.sourceforge.owlapi</groupId> <artifactId>owlexplanation</artifactId> <version>2.0.0</version> <exclusions> <exclusion> <groupId>net.sourceforge.owlapi</groupId> <artifactId>owlapi-osgidistribution</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>edu.stanford.protege</groupId> <artifactId>explanation-workbench</artifactId> <version>3.0.0</version> <exclusions> <exclusion> <groupId>net.sourceforge.owlapi</groupId> <artifactId>owlapi-osgidistribution</artifactId> </exclusion> <exclusion> <groupId>edu.stanford.protege</groupId> <artifactId>protege-common</artifactId> </exclusion> <exclusion> <groupId>edu.stanford.protege</groupId> <artifactId>protege-editor-core</artifactId> </exclusion> <exclusion> <groupId>edu.stanford.protege</groupId> <artifactId>protege-editor-owl</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.geneontology</groupId> <artifactId>owl-diff_${scala.version}</artifactId> <version>1.2.2</version> <exclusions> <exclusion> <groupId>net.sourceforge.owlapi</groupId> <artifactId>owlapi-distribution</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.geneontology</groupId> <artifactId>whelk-owlapi_${scala.version}</artifactId> <version>1.0.4</version> <exclusions> <exclusion> <groupId>net.sourceforge.owlapi</groupId> <artifactId>owlapi-distribution</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.9</version> </dependency> <dependency> <groupId>net.sf.py4j</groupId> <artifactId>py4j</artifactId> <version>0.10.9.2</version> </dependency> </dependencies> </project>