You can download argparse4j-0.4.4.jar in this page.
MIT
argparse4j-0.4.4.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/net.sourceforge.argparse4j/argparse4j/pom.properties META-INF/maven/net.sourceforge.argparse4j/argparse4j/pom.xml net.sourceforge.argparse4j.ArgumentParsers.class net.sourceforge.argparse4j.annotation.Arg.class net.sourceforge.argparse4j.helper.ASCIITextWidthCounter.class net.sourceforge.argparse4j.helper.CJKTextWidthCounter.class net.sourceforge.argparse4j.helper.PrefixPattern.class net.sourceforge.argparse4j.helper.ReflectHelper.class net.sourceforge.argparse4j.helper.TextHelper.class net.sourceforge.argparse4j.helper.TextWidthCounter.class net.sourceforge.argparse4j.impl.Arguments.class net.sourceforge.argparse4j.impl.action.AppendArgumentAction.class net.sourceforge.argparse4j.impl.action.AppendConstArgumentAction.class net.sourceforge.argparse4j.impl.action.CountArgumentAction.class net.sourceforge.argparse4j.impl.action.HelpArgumentAction.class net.sourceforge.argparse4j.impl.action.StoreArgumentAction.class net.sourceforge.argparse4j.impl.action.StoreConstArgumentAction.class net.sourceforge.argparse4j.impl.action.StoreFalseArgumentAction.class net.sourceforge.argparse4j.impl.action.StoreTrueArgumentAction.class net.sourceforge.argparse4j.impl.action.VersionArgumentAction.class net.sourceforge.argparse4j.impl.choice.CollectionArgumentChoice.class net.sourceforge.argparse4j.impl.choice.RangeArgumentChoice.class net.sourceforge.argparse4j.impl.type.ConstructorArgumentType.class net.sourceforge.argparse4j.impl.type.EnumArgumentType.class net.sourceforge.argparse4j.impl.type.FileArgumentType.class net.sourceforge.argparse4j.impl.type.ReflectArgumentType.class net.sourceforge.argparse4j.impl.type.StringArgumentType.class net.sourceforge.argparse4j.inf.Argument.class net.sourceforge.argparse4j.inf.ArgumentAction.class net.sourceforge.argparse4j.inf.ArgumentChoice.class net.sourceforge.argparse4j.inf.ArgumentGroup.class net.sourceforge.argparse4j.inf.ArgumentParser.class net.sourceforge.argparse4j.inf.ArgumentParserException.class net.sourceforge.argparse4j.inf.ArgumentType.class net.sourceforge.argparse4j.inf.FeatureControl.class net.sourceforge.argparse4j.inf.MutuallyExclusiveGroup.class net.sourceforge.argparse4j.inf.Namespace.class net.sourceforge.argparse4j.inf.Subparser.class net.sourceforge.argparse4j.inf.Subparsers.class net.sourceforge.argparse4j.internal.ArgumentGroupImpl.class net.sourceforge.argparse4j.internal.ArgumentImpl.class net.sourceforge.argparse4j.internal.ArgumentParserImpl.class net.sourceforge.argparse4j.internal.HelpScreenException.class net.sourceforge.argparse4j.internal.ParseState.class net.sourceforge.argparse4j.internal.SubparserImpl.class net.sourceforge.argparse4j.internal.SubparsersImpl.class net.sourceforge.argparse4j.internal.TerminalWidth.class net.sourceforge.argparse4j.internal.UnrecognizedArgumentException.class net.sourceforge.argparse4j.internal.UnrecognizedCommandException.class
argparse4j-0.4.4.pom file content.
<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.4.4</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>2012</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> <developers> <developer> <id>tatsuhiro_t</id> <name>Tatsuhiro Tsujikawa</name> <timezone>+9</timezone> </developer> </developers> <issueManagement> <system>github.com</system> <url>https://github.com/tatsuhiro-t/argparse4j/issues</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> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <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.9.1</version> <configuration> <locale>en</locale> </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> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <executions> <execution> <id>sphinx-doc</id> <phase>site</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>sphinx-make-html</executable> <arguments> <argument>${project.version}</argument> </arguments> </configuration> </execution> </executions> </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.9.1</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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</version> <configuration> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.2</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>net.sourceforge.argparse4j</groupId> <artifactId>argparse4j</artifactId> <version>0.4.4</version> </dependency>
If you think the following argparse4j-0.4.4.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download argparse4j-0.4.4.jar file