kgcl-robot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.incenp</groupId> <artifactId>kgcl-robot</artifactId> <version>0.5.1</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>kgcl</artifactId> <groupId>org.incenp</groupId> <version>0.5.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>kgcl-robot</artifactId> <name>KGCL-ROBOT</name> <description>KGCL plugin for ROBOT</description> <url>https://incenp.org/dvlpt/kgcl-java/robot.html</url> <scm> <tag>kgcl-java-0.5.1</tag> <url>https://github.com/gouttegd/kgcl-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>kgcl-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.kgcl.robot.StandaloneRobot</mainClass> </transformer> </transformers> </configuration> </execution> <execution> <id>robot-plugin</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <finalName>kgcl-robot-plugin-${project.version}</finalName> <artifactSet> <includes> <include>org.incenp:kgcl-core</include> <include>org.projectlombok:lombok</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.6</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.11.0</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> </dependencies> </project>