CLI Parser.
An annotation-based command line interface parser..
Here is the list of declaration for cli-parser. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.github.spullara.cli-parser</groupId> <artifactId>cli-parser</artifactId> <version>1.0</version> </dependency>
If you think this Maven repository POM file listing for cli-parser is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The following plugins are used in the cli-parser-1.0.jar
The following packages are defined in the cli-parser-1.0.jar
com.sampullara.cli
Here is the content of the POM file.
<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"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.spullara.cli-parser</groupId> <artifactId>cli-parser</artifactId> <packaging>jar</packaging> <name>CLI Parser</name> <version>1.0</version> <url>http://code.google.com/p/cli-parser/</url> <description>An annotation-based command line interface parser.</description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:spullara/cli-parser.git</connection> <developerConnection>scm:git:git@github.com:spullara/cli-parser.git</developerConnection> <url>git@github.com:spullara/cli-parser.git</url> </scm> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>