java-cl-parser.
This parser strives to achieve an elegant, ioc-type interface to make launching command-line projects effortless..
Here is the list of declaration for java-cl-parser. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.bitbucket.bradleysmithllc.java-cl-parser</groupId> <artifactId>java-cl-parser</artifactId> <version>3.1.0</version> </dependency>
If you think this Maven repository POM file listing for java-cl-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 java-cl-parser-3.1.0 has 5 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 4.11 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. | 2031 |
Console | commons-cli 1.2 Commons CLI provides a simple API for presenting, processing and validating a command line interface. | 305 |
File | commons-io 2.4 The Commons IO library contains utility classes, stream implementations, file filters, file comparators, endian transformation classes, and much more. | 852 |
Template | velocity 1.7 Apache Velocity is a general purpose template engine. | 140 |
The following plugins are used in the java-cl-parser-3.1.0.jar
The following packages are defined in the java-cl-parser-3.1.0.jar
org.bitbucket.bradleysmithllc.java_cl_parser org.bitbucket.bradleysmithllc.java_cl_parser.regexp org.bitbucket.bradleysmithllc.java_cl_parser.util
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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.bitbucket.bradleysmithllc.java-cl-parser</groupId> <artifactId>java-cl-parser</artifactId> <version>3.1.0</version> <packaging>jar</packaging> <name>java-cl-parser</name> <description>This parser strives to achieve an elegant, ioc-type interface to make launching command-line projects effortless. </description> <url>https://bitbucket.org/bradleysmithllc/java-cl-parser</url> <distributionManagement> <!-- repository> <id>sonic-releases</id> <name>Releases</name> <documentationUrl>http://brad-smith-vm:8081/nexus/content/repositories/sonic-etl</documentationUrl> </repository --> <repository> <id>distrib-releases</id> <name>Releases</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>distrib-snapshots</id> <name>Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <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> <developerConnection>https://bradleysmithllc@bitbucket.org/bradleysmithllc/java-cl-parser.git</developerConnection> <connection>https://bradleysmithllc@bitbucket.org/bradleysmithllc/java-cl-parser.git</connection> <url>https://bradleysmithllc@bitbucket.org/bradleysmithllc/java-cl-parser.git</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <profiles> <profile> <id>deployer</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <configuration> <passphrase>passphrase</passphrase> <keyname>EB36548A</keyname> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.stefanbirkner</groupId> <artifactId>system-rules</artifactId> <version>1.2.0</version> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.7</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.bitbucket.bradleysmithllc.regular-expression-proxy-compiler</groupId> <artifactId>regular-expression-proxy-compiler</artifactId> <version>1.6.10</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>generate-regular-expressions</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.5</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>