1 <project> 2 <modelVersion>4.0.0</modelVersion> 3 <groupId>commons-cli</groupId> 4 <artifactId>commons-cli</artifactId> 5 <name>CLI</name> 6 <version>1.0</version> 7 <description>Commons CLI provides a simple API for working with the command line arguments and options.</description> 8 <inceptionYear>2002</inceptionYear> 9 <developers> 10 <developer> 11 <id>jstrachan</id> 12 <name>James Strachan</name> 13 <email>jstrachan (a] apache.org</email> 14 <organization>SpiritSoft, Inc.</organization> 15 </developer> 16 <developer> 17 <id>bob</id> 18 <name>bob mcwhirter</name> 19 <email>bob (a] werken.com</email> 20 <organization>Werken</organization> 21 </developer> 22 <developer> 23 <id>jkeyes</id> 24 <name>John Keyes</name> 25 <email>jbjk (a] mac.com</email> 26 <organization>integral Source</organization> 27 </developer> 28 </developers> 29 <contributors> 30 <contributor> 31 <name>Berin Loritsch</name> 32 <email>bloritsch (a] apache.org</email> 33 <roles> 34 <role>helped in the Avalon CLI merge</role> 35 </roles> 36 </contributor> 37 <contributor> 38 <name>Peter Maddocks</name> 39 <email>peter_maddocks (a] hp.com</email> 40 <organization>Hewlett-Packard</organization> 41 <roles> 42 <role>supplied patch</role> 43 </roles> 44 </contributor> 45 </contributors> 46 <build> 47 <plugins> 48 <plugin> 49 <artifactId>maven-surefire-plugin</artifactId> 50 <configuration> 51 <includes> 52 <include>**/*Test*.java</include> 53 </includes> 54 </configuration> 55 </plugin> 56 </plugins> 57 </build> 58 <dependencies> 59 <dependency> 60 <groupId>commons-logging</groupId> 61 <artifactId>commons-logging</artifactId> 62 <version>1.0</version> 63 </dependency> 64 <dependency> 65 <groupId>commons-lang</groupId> 66 <artifactId>commons-lang</artifactId> 67 <version>1.0</version> 68 </dependency> 69 <dependency> 70 <groupId>junit</groupId> 71 <artifactId>junit</artifactId> 72 <version>3.7</version> 73 <scope>test</scope> 74 </dependency> 75 </dependencies> 76 </project>