forked from apache/commons-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.xml
More file actions
65 lines (55 loc) · 1.46 KB
/
Copy pathproject.xml
File metadata and controls
65 lines (55 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="UTF-8"?>
<project>
<extend>../project.xml</extend>
<id>commons-cli</id>
<name>CLI</name>
<currentVersion>1.0-dev</currentVersion>
<inceptionYear>2002</inceptionYear>
<shortDescription>Commons CLI</shortDescription>
<gumpRepositoryId>jakarta</gumpRepositoryId>
<description>
Commons CLI provdes a simple API for working with the command line arguments and options.
</description>
<developers>
<developer>
<name>James Strachan</name>
<id>jstrachan</id>
<email>jstrachan@apache.org</email>
<organization>SpiritSoft, Inc.</organization>
</developer>
<developer>
<name>bob mcwhirter</name>
<id>bob</id>
<email>bob@werken.com</email>
<organization>Werken</organization>
</developer>
<developer>
<name>John Keyes</name>
<id>jkeyes</id>
<email>jbjk@mac.com</email>
<organization>integral Source</organization>
</developer>
</developers>
<dependencies>
<dependency>
<id>commons-logging</id>
<version>1.0</version>
</dependency>
<dependency>
<id>commons-lang</id>
<version>SNAPSHOT</version>
</dependency>
<dependency>
<id>junit</id>
<version>3.7</version>
</dependency>
</dependencies>
<build>
<!-- Unit test classes -->
<unitTest>
<includes>
<include>**/*Test*.java</include>
</includes>
</unitTest>
</build>
</project>