cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.nasdanika.core</groupId> <artifactId>cli</artifactId> <version>2025.6.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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>parent</artifactId> <groupId>org.nasdanika.core</groupId> <version>2025.6.0</version> <relativePath>..</relativePath> </parent> <version>2025.6.1</version> <artifactId>cli</artifactId> <packaging>jar</packaging> <name>CLI</name> <description>Extensible Command Line Interface</description> <build> <plugins> <!-- For building a minimal distribution --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.8.0</version> <executions> <execution> <id>copy-dependencies</id> <phase>prepare-package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory> ${project.build.directory}/dist/lib </outputDirectory> <useRepositoryLayout>true</useRepositoryLayout> <includeScope>runtime</includeScope> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>3.5.3</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>info.picocli</groupId> <artifactId>picocli</artifactId> <!-- Use https://maven.nasdanika.org/snapshots repository or build a snapshot from https://github.com/Nasdanika/picocli gradlew.bat publishToMavenLocal --> <version>4.7.7-SNAPSHOT</version> </dependency> <dependency> <groupId>org.nasdanika.core</groupId> <artifactId>telemetry</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>org.nasdanika.core</groupId> <artifactId>drawio</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>org.jline</groupId> <artifactId>jline</artifactId> <version>3.30.4</version> </dependency> </dependencies> </project>