CLI.
Commons CLI provides a simple API for presenting, processing and validating a command line interface..
Here is the list of declaration for commons-cli. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.1</version> </dependency>
If you think this Maven repository POM file listing for commons-cli 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: /LICENSE.txt.
The commons-cli-1.1 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 3.8.1 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1966 |
The following table lists the most popular artifacts which are depending on commons-cli-1.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Message Queue | amqp-client 2.8.7 RabbitMQ AMQP Java Client | 16 |
Document Database | cassandra-all 0.7.0 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 6 |
Document Database | cassandra-all 2.0.4 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 9 |
Message Queue | amqp-client 2.8.6 RabbitMQ AMQP Java Client | 11 |
Document Database | cassandra-all 1.2.6 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 12 |
Document Database | cassandra-all 1.2.11 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 32 |
Document Database | cassandra-all 1.1.5 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 5 |
Message Queue | amqp-client 3.3.1 RabbitMQ AMQP Java Client | 13 |
The following plugins are used in the commons-cli-1.1.jar
The following packages are defined in the commons-cli-1.1.jar
org.apache.commons.cli
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?><project> <modelVersion>4.0.0</modelVersion> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <name>CLI</name> <version>1.1</version> <description>Commons CLI provides a simple API for presenting, processing and validating a command line interface.</description> <url>http://jakarta.apache.org/commons/cli/</url> <issueManagement> <url>http://issues.apache.org/jira/</url> </issueManagement> <ciManagement> <notifiers> <notifier> <configuration> <address>commons-dev@jakarta.apache.org</address> </configuration> </notifier> </notifiers> </ciManagement> <inceptionYear>2002</inceptionYear> <mailingLists> <mailingList> <name>Commons Dev List</name> <subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe> <unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe> <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/</archive> </mailingList> <mailingList> <name>Commons User List</name> <subscribe>commons-user-subscribe@jakarta.apache.org</subscribe> <unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe> <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-user/</archive> </mailingList> </mailingLists> <contributors> <contributor> <name>Peter Donald</name> <roles> <role>contributed ideas and code from Avalon Excalibur's cli package</role> </roles> </contributor> <contributor> <name>Brian Egge</name> <roles> <role>made the 1.1 release happen</role> </roles> </contributor> <contributor> <name>Berin Loritsch</name> <email>bloritsch@apache.org</email> <roles> <role>helped in the Avalon CLI merge</role> </roles> </contributor> <contributor> <name>Peter Maddocks</name> <email>peter_maddocks@hp.com</email> <organization>Hewlett-Packard</organization> <roles> <role>supplied patch</role> </roles> </contributor> <contributor> <name>Andrew Shirley</name> <roles> <role>lots of fixes for 1.1 and 2.0</role> </roles> </contributor> </contributors> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>/LICENSE.txt</url> </license> </licenses> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/cli/trunk</connection> <url>http://svn.apache.org/repos/asf/jakarta/commons/proper/cli/trunk</url> </scm> <organization> <name>Apache Software Foundation</name> <url>http://www.apache.org</url> </organization> <build> <sourceDirectory>src/java</sourceDirectory> <testSourceDirectory>src/test</testSourceDirectory> <resources> <resource> <targetPath>META-INF</targetPath> <directory>${basedir}</directory> <includes> <include>NOTICE.txt</include> </includes> </resource> </resources> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>default</id> <name>Default Repository</name> <url>file:///www/jakarta.apache.org/builds/jakarta-commons/cli/</url> </repository> <site> <id>default</id> <name>Default Site</name> <url>scp://people.apache.org//www/jakarta.apache.org/commons/cli/</url> </site> <status>converted</status> </distributionManagement> </project>