argparse4j.
The command-line parser library based on Python's argparse.
Here is the list of declaration for argparse4j. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>net.sourceforge.argparse4j</groupId> <artifactId>argparse4j</artifactId> <version>0.2.1</version> </dependency>
If you think this Maven repository POM file listing for argparse4j is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:MIT
URL: https://raw.github.com/tatsuhiro-t/argparse4j/master/LICENSE.txt.
The argparse4j-0.2.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 4.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. | 1256 |
The following plugins are used in the argparse4j-0.2.1.jar
The following packages are defined in the argparse4j-0.2.1.jar
net.sourceforge.argparse4j net.sourceforge.argparse4j.annotation net.sourceforge.argparse4j.helper net.sourceforge.argparse4j.impl net.sourceforge.argparse4j.impl.action net.sourceforge.argparse4j.impl.choice net.sourceforge.argparse4j.impl.type net.sourceforge.argparse4j.inf net.sourceforge.argparse4j.internal
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>net.sourceforge.argparse4j</groupId> <artifactId>argparse4j</artifactId> <version>0.2.1</version> <packaging>jar</packaging> <name>argparse4j</name> <url>http://argparse4j.sourceforge.net</url> <description>The command-line parser library based on Python's argparse</description> <inceptionYear>2011</inceptionYear> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <licenses> <license> <name>MIT</name> <url>https://raw.github.com/tatsuhiro-t/argparse4j/master/LICENSE.txt</url> </license> </licenses> <issueManagement> <system>sourceforge.net</system> <url>http://sourceforge.net/p/argparse4j/tickets/</url> </issueManagement> <scm> <connection>scm:git:git://github.com/tatsuhiro-t/argparse4j.git</connection> <developerConnection>scm:git:git@github.com:tatsuhiro-t/argparse4j.git</developerConnection> <url>https://github.com/tatsuhiro-t/argparse4j</url> </scm> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.4</version> <reportSets> <reportSet> <reports> <report>summary</report> <report>dependencies</report> <report>project-team</report> <report>issue-tracking</report> <report>license</report> <report>scm</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <configuration> <locale>en</locale> <stylesheet>maven</stylesheet> </configuration> <reportSets> <reportSet> <id>default</id> <reports> <report>javadoc</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <build> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.0</version> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.2.1</version> <configuration> <descriptorRefs> <descriptorRef>bin</descriptorRef> <descriptorRef>src</descriptorRef> </descriptorRefs> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <configuration> <locale>en</locale> <stylesheet>maven</stylesheet> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</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> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.2.1</version> <configuration> </configuration> </plugin> </plugins> </build> </project>