组织ID: |
net.sf.jopt-simple |
项目ID: |
jopt-simple |
版本: |
3.1-rc1 |
最后修改时间: |
2019-10-23 12:26:05 |
包类型: |
jar |
标题: |
JOpt Simple |
描述: |
A Java library for parsing command line options |
相关URL: |
http://jopt-simple.sourceforge.net |
大小: |
49.62KB |
|
Maven引入代码: |
<dependency>
<groupId>net.sf.jopt-simple</groupId>
<artifactId>jopt-simple</artifactId>
<version>3.1-rc1</version>
</dependency>
|
Gradle引入代码: |
net.sf.jopt-simple:jopt-simple:3.1-rc1
|
下载Jar包: |
|
POM文件内容: |
<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.sf.jopt-simple</groupId>
<artifactId>jopt-simple</artifactId>
<version>3.1-rc1</version>
<packaging>jar</packaging>
<name>JOpt Simple</name>
<url>http://jopt-simple.sourceforge.net</url>
<description>A Java library for parsing command line options</description>
<licenses>
<license>
<name>The MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:cvs:pserver:anonymous@jopt-simple.cvs.sourceforge.net:/cvsroot/jopt-simple:.</connection>
<developerConnection>scm:cvs:ext:pholser@jopt-simple.cvs.sourceforge.net:/cvsroot/jopt-simple:.</developerConnection>
<url>http://jopt-simple.cvs.sourceforge.net/jopt-simple</url>
<tag>jopt-simple-3_1-rc1</tag>
</scm>
<developers>
<developer>
<id>pholser</id>
<name>Paul Holser</name>
<email>pholser@alumni.rice.edu</email>
<url>http://cleveralias.blogs.com</url>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>1.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit-addons</groupId>
<artifactId>junit-addons</artifactId>
<version>1.4</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0-alpha-5</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<excludes>
<exclude>joptsimple/examples/**</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-5</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<check>
<haltOnFailure>true</haltOnFailure>
<branchRate>80</branchRate>
<totalBranchRate>90</totalBranchRate>
<totalLineRate>95</totalLineRate>
</check>
</configuration>
<executions>
<execution>
<goals>
<goal>clean</goal>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<configLocation>${basedir}/conf/src-checkstyle.xml</configLocation>
<headerLocation>${basedir}/conf/MIT-LICENSE.txt</headerLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<configuration>
<providerImplementations>
<cvs>cvs_native</cvs>
</providerImplementations>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<minimumTokens>45</minimumTokens>
<targetJdk>1.5</targetJdk>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>cpd-check</goal>
</goals>
</execution>
</executions>
</plugin>
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javancss-maven-plugin</artifactId>
<version>2.0-beta-2</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<ccnLimit>12</ccnLimit>
</configuration>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>paste-examples</id>
<phase>post-site</phase>
<configuration>
<tasks>
<property name="project.version" value="${project.version}" />
<property name="java.io.tmpdir" value="${java.io.tmpdir}" />
<property name="example.src.dir" value="src/test/java" />
<property name="example.class.path" refid="maven.test.classpath" />
<property name="website.staging.dir" value="target/site" />
<ant antfile="paste-examples.xml" target="-paste-examples" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<templateFile>src/site/site.vm</templateFile>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>1.5</source>
<show>public</show>
<excludePackageNames>joptsimple.examples:joptsimple.internal:joptsimple.internal.*</excludePackageNames>
<links>
<link>http://java.sun.com/j2se/1.5.0/docs/api</link>
</links>
<bottom><![CDATA[<i>© Copyright 2004-2009 Paul R. Holser, Jr. All rights reserved. Licensed under The MIT License. pholser@alumni.rice.edu</i>]]></bottom>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javancss-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>${basedir}/conf/src-checkstyle.xml</configLocation>
<headerLocation>${basedir}/conf/MIT-LICENSE.txt</headerLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<minimumTokens>40</minimumTokens>
<targetJdk>1.5</targetJdk>
</configuration>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>jopt-simple-sourceforge</id>
<name>JOpt Simple Repository</name>
<url>sftp://web.sourceforge.net/home/groups/j/jo/jopt-simple/htdocs/maven</url>
<layout>default</layout>
</repository>
<snapshotRepository>
<uniqueVersion>false</uniqueVersion>
<id>jopt-simple-sourceforge-snapshots</id>
<name>JOpt Simple Snapshot Repository</name>
<url>sftp://web.sourceforge.net/home/groups/j/jo/jopt-simple/htdocs/maven-snapshots</url>
<layout>default</layout>
</snapshotRepository>
<site>
<id>jopt-simple.sf.net</id>
<url>scp://shell.sourceforge.net/home/groups/j/jo/jopt-simple/htdocs/</url>
</site>
</distributionManagement>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
joptsimple.AbstractOptionSpec.class
joptsimple.AlternativeLongOptionSpec.class
joptsimple.ArgumentAcceptingOptionSpec.class
joptsimple.ArgumentList.class
joptsimple.HelpFormatter$1.class
joptsimple.HelpFormatter.class
joptsimple.IllegalOptionClusterException.class
joptsimple.IllegalOptionSpecificationException.class
joptsimple.MultipleArgumentsForOptionException.class
joptsimple.NoArgumentOptionSpec.class
joptsimple.OptionArgumentConversionException.class
joptsimple.OptionException.class
joptsimple.OptionMissingRequiredArgumentException.class
joptsimple.OptionParser.class
joptsimple.OptionParserState$1.class
joptsimple.OptionParserState$2.class
joptsimple.OptionParserState.class
joptsimple.OptionSet.class
joptsimple.OptionSpec.class
joptsimple.OptionSpecBuilder.class
joptsimple.OptionSpecTokenizer.class
joptsimple.OptionSpecVisitor.class
joptsimple.OptionalArgumentOptionSpec.class
joptsimple.ParserRules.class
joptsimple.RequiredArgumentOptionSpec.class
joptsimple.UnrecognizedOptionException.class
joptsimple.ValueConversionException.class
joptsimple.ValueConverter.class
joptsimple.internal.AbbreviationMap.class
joptsimple.internal.Classes.class
joptsimple.internal.Column$1.class
joptsimple.internal.Column.class
joptsimple.internal.ColumnWidthCalculator.class
joptsimple.internal.ColumnarData.class
joptsimple.internal.ConstructorInvokingValueConverter.class
joptsimple.internal.MethodInvokingValueConverter.class
joptsimple.internal.Reflection.class
joptsimple.internal.ReflectionException.class
joptsimple.internal.Strings.class
joptsimple.util.DateConverter.class
joptsimple.util.KeyValuePair.class
joptsimple.util.RegexMatcher.class
META-INF/maven/net.sf.jopt-simple/jopt-simple/pom.xml
META-INF/maven/net.sf.jopt-simple/jopt-simple/pom.properties
|
依赖Jar: |
joda-time-1.6.jar
/joda-time/joda-time/1.6
查看joda-time所有版本文件
ant-1.7.0.jar
/org.apache.ant/ant/1.7.0
查看ant所有版本文件
junit-4.5.jar
/junit/junit/4.5
查看junit所有版本文件
junit-addons-1.4.jar
/junit-addons/junit-addons/1.4
查看junit-addons所有版本文件
|