Plexus CLI.
Easily create CLIs with Plexus components.
Here is the list of declaration for plexus-cli. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-cli</artifactId> <version>1.2</version> </dependency>
If you think this Maven repository POM file listing for plexus-cli is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The plexus-cli-1.2 has 3 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 |
---|---|---|
Console | commons-cli 1.0 Commons CLI provides a simple API for working with the command line arguments and options. | 131 |
The following packages are defined in the plexus-cli-1.2.jar
org.codehaus.plexus.tools.cli
Here is the content of the POM file.
<?xml version="1.0"?><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"> <parent> <artifactId>plexus-tools</artifactId> <groupId>org.codehaus.plexus</groupId> <version>1.0.8</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-cli</artifactId> <name>Plexus CLI</name> <description>Easily create CLIs with Plexus components</description> <version>1.2</version> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> <version>1.0-alpha-34</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.4.7</version> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.0</version> <exclusions> <exclusion> <artifactId>commons-lang</artifactId> <groupId>commons-lang</groupId> </exclusion> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> </exclusions> </dependency> </dependencies> <scm> <connection>scm:svn:http://svn.codehaus.org/plexus/plexus-tools/tags/plexus-cli-1.2</connection> <developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-tools/tags/plexus-cli-1.2</developerConnection> <url>http://fisheye.codehaus.org/browse/plexus/plexus-tools/tags/plexus-cli-1.2</url> </scm> </project>