Former-commit-id:133dc97f67
[formerlya02aeb236c
] [formerly9f19e3f712
] [formerly06a8b51d6d
[formerly9f19e3f712
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]] Former-commit-id:06a8b51d6d
Former-commit-id:377dcd10b9
[formerly3360eb6c5f
] Former-commit-id:8e80217e59
76 lines
No EOL
2.1 KiB
Text
76 lines
No EOL
2.1 KiB
Text
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>commons-cli</groupId>
|
|
<artifactId>commons-cli</artifactId>
|
|
<name>CLI</name>
|
|
<version>1.0</version>
|
|
<description>Commons CLI provides a simple API for working with the command line arguments and options.</description>
|
|
<inceptionYear>2002</inceptionYear>
|
|
<developers>
|
|
<developer>
|
|
<id>jstrachan</id>
|
|
<name>James Strachan</name>
|
|
<email>jstrachan@apache.org</email>
|
|
<organization>SpiritSoft, Inc.</organization>
|
|
</developer>
|
|
<developer>
|
|
<id>bob</id>
|
|
<name>bob mcwhirter</name>
|
|
<email>bob@werken.com</email>
|
|
<organization>Werken</organization>
|
|
</developer>
|
|
<developer>
|
|
<id>jkeyes</id>
|
|
<name>John Keyes</name>
|
|
<email>jbjk@mac.com</email>
|
|
<organization>integral Source</organization>
|
|
</developer>
|
|
</developers>
|
|
<contributors>
|
|
<contributor>
|
|
<name>Berin Loritsch</name>
|
|
<email>bloritsch@apache.org</email>
|
|
<roles>
|
|
<role>helped in the Avalon CLI merge</role>
|
|
</roles>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Peter Maddocks</name>
|
|
<email>peter_maddocks@hp.com</email>
|
|
<organization>Hewlett-Packard</organization>
|
|
<roles>
|
|
<role>supplied patch</role>
|
|
</roles>
|
|
</contributor>
|
|
</contributors>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<includes>
|
|
<include>**/*Test*.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.7</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |