kgcl-robot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.incenp</groupId> <artifactId>kgcl-robot</artifactId> <version>0.3.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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.incenp</groupId> <artifactId>kgcl</artifactId> <version>0.3.1</version> </parent> <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> <url>https://github.com/gouttegd/kgcl-java</url> <tag>kgcl-0.3.1</tag> </scm> <dependencies> <dependency> <groupId>org.incenp</groupId> <artifactId>kgcl-core</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>org.obolibrary.robot</groupId> <artifactId>robot-command</artifactId> <version>1.9.5</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.2.4</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 implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <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> </project>