dicer-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.incenp</groupId> <artifactId>dicer-cli</artifactId> <version>0.2.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>dicer</artifactId> <groupId>org.incenp</groupId> <version>0.2.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>dicer-cli</artifactId> <name>Dicer-CLI</name> <description>Command-line tool to manipulate OBO ID ranges</description> <url>https://incenp.org/dvlpt/dicer/cli.html</url> <scm> <tag>dicer-0.2.1</tag> <url>https://github.com/gouttegd/dicer</url> </scm> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <id>dicer-cli</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <finalName>dicer-cli-${project.version}</finalName> <transformers> <transformer /> <transformer> <manifestEntries> <Main-Class>org.incenp.obofoundry.dicer.cli.SimpleCLI</Main-Class> <Implementation-Version>${project.version}</Implementation-Version> </manifestEntries> </transformer> </transformers> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.skife.maven</groupId> <artifactId>really-executable-jar-maven-plugin</artifactId> <version>2.1.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>really-executable-jar</goal> </goals> </execution> </executions> <configuration> <inputFile>target/dicer-cli-${project.version}.jar</inputFile> <programFile>dicer-cli</programFile> </configuration> </plugin> </plugins> </build> <dependencies> <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>