kopt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.themrmilchmann.kopt</groupId> <artifactId>kopt</artifactId> <version>0.4.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.themrmilchmann.kopt</groupId> <artifactId>kopt</artifactId> <version>0.4.0</version> <name>kopt</name> <description>Simple CLI argument parser for the JVM</description> <url>https://github.com/TheMrMilchmann/kopt</url> <licenses> <license> <name>BSD-3-Clause</name> <url>https://github.com/TheMrMilchmann/kopt/blob/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>TheMrMilchmann</id> <name>Leon Linhart</name> <email>themrmilchmann@gmail.com</email> <url>https://github.com/TheMrMilchmann</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/TheMrMilchmann/kopt.git</connection> <developerConnection>scm:git:git://github.com/TheMrMilchmann/kopt.git</developerConnection> <url>https://github.com/TheMrMilchmann/kopt.git</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>[1.1.0,)</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.13.1</version> <scope>test</scope> </dependency> </dependencies> </project>