sssom-robot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.incenp</groupId>
<artifactId>sssom-robot</artifactId>
<version>1.10.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 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>sssom-java</artifactId>
<groupId>org.incenp</groupId>
<version>1.10.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sssom-robot</artifactId>
<name>SSSOM-ROBOT</name>
<description>SSSOM plugin for ROBOT</description>
<url>https://incenp.org/dvlpt/sssom-java/robot.html</url>
<scm>
<tag>sssom-java-1.10.0</tag>
<url>https://github.com/gouttegd/sssom-java</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<id>robot-standalone</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<finalName>sssom-robot-standalone-${project.parent.version}</finalName>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.MF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/services/org.obolibrary.robot.Command</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer />
<transformer>
<mainClass>org.incenp.obofoundry.sssom.robot.StandaloneRobot</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
<execution>
<id>robot-plugin</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<finalName>sssom-robot-plugin-${project.version}</finalName>
<artifactSet>
<includes>
<include>org.incenp:sssom-core</include>
<include>org.incenp:sssom-ext</include>
<include>org.projectlombok:lombok</include>
<include>com.fasterxml.jackson.dataformat:jackson-dataformat-csv</include>
<include>org.antlr:antlr4-runtime</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.obolibrary.robot</groupId>
<artifactId>robot-command</artifactId>
<version>1.9.8</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.18</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.13.0-M3</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>junit-platform-engine</artifactId>
<groupId>org.junit.platform</groupId>
</exclusion>
<exclusion>
<artifactId>junit-jupiter-api</artifactId>
<groupId>org.junit.jupiter</groupId>
</exclusion>
<exclusion>
<artifactId>apiguardian-api</artifactId>
<groupId>org.apiguardian</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.20.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>