bytecoder-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.mirkosertic.bytecoder</groupId> <artifactId>bytecoder-cli</artifactId> <version>2024-05-10</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>de.mirkosertic.bytecoder</groupId> <artifactId>bytecoder-parent</artifactId> <version>2024-05-10</version> </parent> <artifactId>bytecoder-cli</artifactId> <packaging>jar</packaging> <name>Bytecoder Command Line Interface</name> <description>Bytecoder Command Line Interface</description> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.7.5</version> <executions> <execution> <goals> <goal>repackage</goal> </goals> <configuration> <classifier>executable</classifier> <mainClass>de.mirkosertic.bytecoder.cli.BytecoderCLI</mainClass> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>bytecoder-core</artifactId> </dependency> <dependency> <groupId>info.picocli</groupId> <artifactId>picocli</artifactId> <version>4.7.5</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <version>2.0.11</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.9.0</version> <scope>test</scope> </dependency> </dependencies> </project>