argparse4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sourceforge.argparse4j</groupId> <artifactId>argparse4j</artifactId> <version>0.9.0</version> </dependency>
<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"> <parent> <artifactId>argparse4j-root</artifactId> <groupId>net.sourceforge.argparse4j</groupId> <version>0.9.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>argparse4j</artifactId> <packaging>jar</packaging> <name>argparse4j</name> <url>https://argparse4j.github.io</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> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.1.1</version> <reportSets> <reportSet> <reports> <report>summary</report> <report>dependencies</report> <report>team</report> <report>issue-management</report> <report>licenses</report> <report>scm</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <locale>en</locale> <release>8</release> <sourceFileExcludes> <sourceFileExclude>module-info.java</sourceFileExclude> </sourceFileExcludes> </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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>sphinx-doc</id> <phase>site</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <mkdir dir="src/site/sphinx/_build/html" /> <exec executable="sphinx-build" failonerror="true"> <arg line="-b html -d src/site/sphinx/_build/doctrees -D version=${project.version} -D release=${project.version} src/site/sphinx src/site/sphinx/_build/html" /> </exec> </target> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>bin</descriptorRef> <descriptorRef>src</descriptorRef> </descriptorRefs> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <locale>en</locale> <stylesheet>maven</stylesheet> <source>8</source> <release>8</release> <sourceFileExcludes> <sourceFileExclude>module-info.java</sourceFileExclude> </sourceFileExcludes> </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> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <!-- Disable default phase due to fixed id and position in lifecycle --> <execution> <id>default-compile</id> <phase>none</phase> <!-- specify source/target for IDE integration --> <configuration> <release>9</release> </configuration> </execution> <!-- Compile project with Java 9 to ensure module-info.java is valid --> <execution> <id>java-9-module-compile</id> <goals> <goal>compile</goal> </goals> <configuration> <release>9</release> <includes> <include>module-info.java</include> </includes> </configuration> </execution> <!-- Recompile as Java 8 to overwrite Java 8 class files, except module-info.java --> <execution> <id>java-8-compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> <configuration> <release>8</release> <excludes> <exclude>module-info.java</exclude> </excludes> </configuration> </execution> <!-- Compile test sources with a minimum of Java 8 --> <execution> <id>default-testCompile</id> <phase>test-compile</phase> <goals> <goal>testCompile</goal> </goals> <configuration> <release>8</release> </configuration> </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> <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> <!-- Both source and binary compatibility problems are reported. The reason is that the following incompatible changes are considered source changes. They do indeed not break binary compatibility, i.e. sub types will continue to load. But they will cause problems at run time if a client upgrades without recompilation of the client code, so we want to know about them: - METHOD_ABSTRACT_ADDED_TO_CLASS - METHOD_ADDED_TO_INTERFACE The report now contains more information than needed, but you only have to look at types marked with a "!" or "*". --> <groupId>com.github.siom79.japicmp</groupId> <artifactId>japicmp-maven-plugin</artifactId> <configuration> <oldVersion> <dependency> <groupId>net.sourceforge.argparse4j</groupId> <artifactId>argparse4j</artifactId> <version>${previously.released.version}</version> <type>jar</type> </dependency> </oldVersion> <newVersion> <file> <path>${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging}</path> </file> </newVersion> <parameter> <onlyModified>true</onlyModified> <excludes> <exclude>net.sourceforge.argparse4j.internal</exclude> </excludes> </parameter> </configuration> <executions> <execution> <phase>verify</phase> <goals> <goal>cmp</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>