argparse4j-root
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.sourceforge.argparse4j</groupId>
<artifactId>argparse4j-root</artifactId>
<version>0.9.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>
<artifactId>argparse4j-root</artifactId>
<groupId>net.sourceforge.argparse4j</groupId>
<version>0.9.0</version>
<packaging>pom</packaging>
<name>argparse4j-root</name>
<url>https://argparse4j.github.io</url>
<description>The command-line parser library based on Python's argparse</description>
<modules>
<module>extensions</module>
<module>main</module>
</modules>
<properties>
<previously.released.version>0.8.1</previously.released.version>
</properties>
<licenses>
<license>
<name>MIT</name>
<url>https://raw.github.com/argparse4j/argparse4j/master/LICENSE.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>tatsuhiro_t</id>
<name>Tatsuhiro Tsujikawa</name>
<url>https://github.com/tatsuhiro_t</url>
<timezone>+9</timezone>
</developer>
<developer>
<id>jstuyts</id>
<name>Johan Stuyts</name>
<url>https://github.com/jstuyts</url>
<timezone>Europe/Amsterdam</timezone>
</developer>
</developers>
<contributors>
<contributor>
<name>Adam Parkin</name>
<url>https://github.com/pzelnip</url>
</contributor>
<contributor>
<name>Amr Mostafa</name>
<url>https://github.com/amr</url>
</contributor>
<contributor>
<name>andrewj</name>
</contributor>
<contributor>
<name>Brice Jaglin</name>
<url>https://github.com/bjaglin</url>
</contributor>
<contributor>
<name>concision</name>
<url>https://github.com/concision</url>
</contributor>
<contributor>
<name>Douglas Clayton</name>
<url>https://github.com/dougclayton</url>
</contributor>
<contributor>
<name>Eitan Adler</name>
<url>https://github.com/grimreaper</url>
</contributor>
<contributor>
<name>Jenny Loomis Williamson</name>
<url>https://github.com/jloomis</url>
</contributor>
<contributor>
<name>Joakim Bergman</name>
<url>https://github.com/bergman</url>
</contributor>
<contributor>
<name>Jonathan Ruckwood</name>
<url>https://github.com/jon-ruckwood</url>
</contributor>
<contributor>
<name>Jörg Schömer</name>
<url>https://github.com/Joerg-Schoemer</url>
</contributor>
<contributor>
<name>Juan Manuel Caicedo Carvajal</name>
<url>https://github.com/cavorite</url>
</contributor>
<contributor>
<name>Kostas Lekkas</name>
<url>https://github.com/lekkas</url>
</contributor>
<contributor>
<name>marikaris</name>
<url>https://github.com/marikaris</url>
</contributor>
<contributor>
<name>Skuratovich Sergey</name>
<url>https://github.com/SSNikolaevich</url>
</contributor>
<contributor>
<name>Wolfgang Hoschek</name>
<url>https://github.com/whoschek</url>
</contributor>
</contributors>
<issueManagement>
<system>github.com</system>
<url>https://github.com/argparse4j/argparse4j/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git://github.com/argparse4j/argparse4j.git</connection>
<developerConnection>scm:git:git@github.com:argparse4j/argparse4j.git</developerConnection>
<url>https://github.com/argparse4j/argparse4j</url>
<tag>argparse4j-0.9.0</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.sourceforge.argparse4j</groupId>
<artifactId>argparse4j</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<!--
An older version of Hadoop is used so clients are not
forced to use a newer version and Java 9.
-->
<version>2.7.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
</dependency>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.8.1</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.4.1</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>[1.9,)</version>
<message>A JDK 9+ installation is required to compile this Maven project</message>
</requireJavaVersion>
<requireMavenVersion>
<version>3.2.3</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.9.1</version>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.1.1</version>
</plugin>
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.15.2</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>