| 组织ID: |
de.tototec |
| 项目ID: |
de.tototec.cmdoption |
| 版本: |
0.6.0 |
| 最后修改时间: |
2018-08-07 17:21:01 |
| 包类型: |
jar |
| 标题: |
CmdOption |
| 描述: |
CmdOption is a simple annotation-driven command line parser toolkit for Java 5 applications that is configured through annotations. |
| 相关URL: |
https://github.com/ToToTec/CmdOption |
| 大小: |
84.63KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>de.tototec</groupId>
<artifactId>de.tototec.cmdoption</artifactId>
<version>0.6.0</version>
</dependency>
|
| Gradle引入代码: |
de.tototec:de.tototec.cmdoption:0.6.0
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>de.tototec</groupId>
<artifactId>de.tototec.cmdoption</artifactId>
<version>0.6.0</version>
<packaging>bundle</packaging>
<name>CmdOption</name>
<description>CmdOption is a simple annotation-driven command line parser toolkit for Java 5 applications that is configured through annotations.</description>
<url>https://github.com/ToToTec/CmdOption</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>TobiasRoeser</id>
<name>Tobias Roeser</name>
<email>tobias.roeser@tototec.de</email>
</developer>
</developers>
<scm>
<connection>https://github.com/ToToTec/CmdOption.git</connection>
<url>https://github.com/ToToTec/CmdOption.git</url>
</scm>
<properties>
<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
<maven.compiler.testSource>1.8</maven.compiler.testSource>
<maven.compiler.testTarget>1.8</maven.compiler.testTarget>
<maven.compiler.showWarnings>true</maven.compiler.showWarnings>
<maven.compiler.source>1.5</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.5</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.11</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
<optional>false</optional>
</dependency>
<dependency>
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
<version>1.72</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
<optional>false</optional>
</dependency>
<dependency>
<groupId>de.tototec</groupId>
<artifactId>de.tobiasroeser.lambdatest</artifactId>
<version>0.2.4</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
<optional>false</optional>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<filtering>false</filtering>
<directory>src/main/resources</directory>
</resource>
<resource>
<filtering>false</filtering>
<directory>.</directory>
<includes>
<include>LICENSE.txt</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.3.0</version>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>baseline</goal>
</goals>
<inherited>true</inherited>
</execution>
</executions>
<inherited>true</inherited>
<configuration>
<instructions>
<Bundle-SymbolicName>de.tototec.cmdoption</Bundle-SymbolicName>
<Export-Package>de.tototec.cmdoption,de.tototec.cmdoption.handler</Export-Package>
<Private-Package>de.tototec.cmdoption.internal</Private-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20.1</version>
<extensions>false</extensions>
<inherited>true</inherited>
<configuration>
<argLine>-Duser.country=EN -Duser.language=en -Duser.variant=</argLine>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<extensions>false</extensions>
<executions>
<execution>
<id>extract-messages</id>
<phase>process-sources</phase>
<goals>
<goal>run</goal>
</goals>
<inherited>true</inherited>
<configuration>
<target>
<mkdir dir="${project.basedir}/target/po" />
<apply parallel="true" failOnError="true" executable="xgettext" verbose="true" relative="true">
<arg value="-ktr" />
<arg value="-kmarktr" />
<arg value="-kpreparetr" />
<arg value="--sort-by-file" />
<arg value="--directory" />
<arg value="src/main/java" />
<arg value="--output-dir" />
<arg value="${project.basedir}/target/po" />
<arg value="--output" />
<arg value="messages.pot" />
<fileset dir="${project.basedir}/src/main/java" />
</apply>
</target>
</configuration>
</execution>
<execution>
<id>update-translations</id>
<goals>
<goal>run</goal>
</goals>
<inherited>true</inherited>
<configuration>
<target>
<mkdir dir="${project.basedir}/target/po" />
<apply parallel="true" failOnError="true" executable="xgettext" verbose="true" relative="true">
<arg value="-ktr" />
<arg value="-kmarktr" />
<arg value="-kpreparetr" />
<arg value="--sort-by-file" />
<arg value="--directory" />
<arg value="src/main/java" />
<arg value="--output-dir" />
<arg value="${project.basedir}/target/po" />
<arg value="--output" />
<arg value="messages.pot" />
<fileset dir="${project.basedir}/src/main/java" />
</apply>
<apply parallel="false" failOnError="true" executable="msgmerge" verbose="true">
<arg value="-v" />
<arg value="--backup=none" />
<arg value="--update" />
<srcfile suffix="" />
<fileset includes="*.po" dir="${project.basedir}/src/main/po" />
<arg value="${project.basedir}/target/po/messages.pot" />
</apply>
</target>
</configuration>
</execution>
<execution>
<id>generate-properties</id>
<phase>process-resources</phase>
<goals>
<goal>run</goal>
</goals>
<inherited>true</inherited>
<configuration>
<target>
<mkdir dir="${project.basedir}/target/classes/de/tototec/cmdoption" />
<apply parallel="false" dest="${project.basedir}/target/classes/de/tototec/cmdoption" failOnError="true" executable="msgmerge" verbose="true">
<arg value="-v" />
<arg value="--output-file" />
<targetfile suffix="" />
<arg value="--properties-output" />
<srcfile suffix="" />
<fileset includes="*.po" dir="${project.basedir}/src/main/po" />
<arg value="${project.basedir}/target/po/messages.pot" />
<mapper from="*.po" to="Messages_*.properties" type="glob" />
</apply>
</target>
</configuration>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>3.0.1</version>
<extensions>false</extensions>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
<inherited>true</inherited>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>gen-pom-xml</id>
<build>
<plugins>
<plugin>
<groupId>io.takari.polyglot</groupId>
<artifactId>polyglot-translate-plugin</artifactId>
<version>0.2.1</version>
<extensions>false</extensions>
<executions>
<execution>
<id>pom-scala-to-pom-xml</id>
<phase>initialize</phase>
<goals>
<goal>translate-project</goal>
</goals>
<inherited>true</inherited>
<configuration>
<input>pom.scala</input>
<output>pom.xml</output>
</configuration>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
<extensions>false</extensions>
<inherited>true</inherited>
<configuration>
<filesets>
<fileset>
<directory>${basedir}</directory>
<includes>
<include>pom.xml</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
LICENSE.txt
META-INF/maven/de.tototec/de.tototec.cmdoption/pom.properties
META-INF/maven/de.tototec/de.tototec.cmdoption/pom.xml
de.tototec.cmdoption.CmdCommand.class
de.tototec.cmdoption.CmdOption.class
de.tototec.cmdoption.CmdOptionDelegate.class
de.tototec.cmdoption.CmdlineModel.class
de.tototec.cmdoption.CmdlineParser$1.class
de.tototec.cmdoption.CmdlineParser$2.class
de.tototec.cmdoption.CmdlineParser$3.class
de.tototec.cmdoption.CmdlineParser.class
de.tototec.cmdoption.CmdlineParserException.class
de.tototec.cmdoption.CommandHandle$CommandHandleComparator.class
de.tototec.cmdoption.CommandHandle.class
de.tototec.cmdoption.DefaultUsageFormatter.class
de.tototec.cmdoption.DefaultUsageFormatter2.class
de.tototec.cmdoption.LineLengthDetector.class
de/tototec/cmdoption/Messages_de.properties
de.tototec.cmdoption.OptionHandle$OptionHandleComparator.class
de.tototec.cmdoption.OptionHandle.class
de.tototec.cmdoption.TtyLineLengthDetector.class
de.tototec.cmdoption.UsageFormatter.class
de.tototec.cmdoption.UsageFormatter2.class
de.tototec.cmdoption.WrappingUsageFormatter.class
de.tototec.cmdoption.handler.AddToCollectionHandler.class
de.tototec.cmdoption.handler.BooleanFieldHandler.class
de.tototec.cmdoption.handler.BooleanHandler.class
de.tototec.cmdoption.handler.BooleanOptionHandler.class
de.tototec.cmdoption.handler.ByteHandler.class
de.tototec.cmdoption.handler.CmdOptionHandler.class
de.tototec.cmdoption.handler.CmdOptionHandlerException.class
de.tototec.cmdoption.handler.EnumHandler.class
de.tototec.cmdoption.handler.IntegerHandler.class
de.tototec.cmdoption.handler.LongHandler.class
de.tototec.cmdoption.handler.PutIntoMapHandler.class
de.tototec.cmdoption.handler.StringFieldHandler.class
de.tototec.cmdoption.handler.StringMethodHandler.class
de.tototec.cmdoption.handler.UrlHandler.class
de.tototec.cmdoption.internal.F0.class
de.tototec.cmdoption.internal.F1$Identity.class
de.tototec.cmdoption.internal.F1.class
de.tototec.cmdoption.internal.F2.class
de.tototec.cmdoption.internal.FList$1.class
de.tototec.cmdoption.internal.FList.class
de.tototec.cmdoption.internal.I18n$PreparedI18n.class
de.tototec.cmdoption.internal.I18n.class
de.tototec.cmdoption.internal.I18nFactory$1$1.class
de.tototec.cmdoption.internal.I18nFactory$1.class
de.tototec.cmdoption.internal.I18nFactory.class
de.tototec.cmdoption.internal.Logger.class
de.tototec.cmdoption.internal.LoggerFactory$DummyLogger.class
de.tototec.cmdoption.internal.LoggerFactory$JavaUtilLogger.class
de.tototec.cmdoption.internal.LoggerFactory$Slf4jLogger.class
de.tototec.cmdoption.internal.LoggerFactory.class
de.tototec.cmdoption.internal.Optional.class
de.tototec.cmdoption.internal.Procedure1.class
|
| 依赖Jar: |
slf4j-api-1.7.25.jar
/org.slf4j/slf4j-api/1.7.25
查看slf4j-api所有版本文件
testng-6.11.jar
/org.testng/testng/6.11
查看testng所有版本文件
jcommander-1.72.jar
/com.beust/jcommander/1.72
查看jcommander所有版本文件
de.tobiasroeser.lambdatest-0.2.4.jar
/de.tototec/de.tobiasroeser.lambdatest/0.2.4
查看de.tobiasroeser.lambdatest所有版本文件
|