-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathproject.xml
More file actions
86 lines (75 loc) · 2 KB
/
Copy pathproject.xml
File metadata and controls
86 lines (75 loc) · 2 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?xml version="1.0" encoding="UTF-8"?>
<project>
<extend>../project.xml</extend>
<id>commons-cli</id>
<name>CLI</name>
<currentVersion>1.0-beta-2-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>
<contributors>
<!-- Helped in merging Avalon CLI -->
<contributor>
<name>Berin Loritsch</name>
<email>bloritsch@apache.org</email>
<id>bloritsch</id>
<roles>
<role>helped in the Avalon CLI merge</role>
</roles>
</contributor>
<!-- Supplied patch -->
<contributor>
<name>Peter Maddocks</name>
<email>peter_maddocks@hp.com</email>
<organization>Hewlett-Packard</organization>
<roles>
<role>supplied patch</role>
</roles>
</contributor>
</contributors>
<dependencies>
<dependency>
<id>commons-logging</id>
<version>1.0</version>
</dependency>
<dependency>
<id>commons-lang</id>
<version>1.0</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>