-
Notifications
You must be signed in to change notification settings - Fork 728
Expand file tree
/
Copy pathproject.xml
More file actions
224 lines (187 loc) · 6.65 KB
/
Copy pathproject.xml
File metadata and controls
224 lines (187 loc) · 6.65 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<?xml version="1.0"?>
<project>
<pomVersion>3</pomVersion>
<id>${pom.groupId}-${pom.name}</id>
<name>io</name>
<groupId>jakarta-commons</groupId>
<currentVersion>SNAPSHOT</currentVersion>
<organization>
<name>Apache Software Foundation</name>
<url>http://www.apache.org</url>
<logo>http://jakarta.apache.org/commons/images/jakarta-logo-blue.gif</logo>
</organization>
<inceptionYear>2002</inceptionYear>
<package>org.apache.commons.io</package>
<logo>/images/logo.jpg</logo>
<!-- Gump integration -->
<gumpRepositoryId>jakarta-io</gumpRepositoryId>
<description>
Commons.IO is a package of Java utility classes for java.io's
hierarchy. Classes in this package are considered to be so standard
and of such high reuse as to justify existence in java.io.
</description>
<shortDescription>Java Common IO Components</shortDescription>
<url>http://jakarta.apache.org/commons/io/</url>
<issueTrackingUrl>
http://nagoya.apache.org:8080/scarab/servlet/scarab/
</issueTrackingUrl>
<siteAddress>jakarta.apache.org</siteAddress>
<siteDirectory>/www/jakarta.apache.org/commons/sandbox/io/</siteDirectory>
<distributionDirectory>
/www/jakarta.apache.org/builds/jakarta-commons-sandbox/io/
</distributionDirectory>
<repository>
<connection>
scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-commons-sandbox/io
</connection>
<url>http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/io/</url>
</repository>
<mailingLists>
<mailingList>
<name>Commons User List</name>
<subscribe>
commons-user-subscribe@jakarta.apache.org
</subscribe>
<unsubscribe>
commons-user-unsubscribe@jakarta.apache.org
</unsubscribe>
<archive>
http://nagoya.apache.org:8080/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org
</archive>
</mailingList>
<mailingList>
<name>Commons Developer List</name>
<subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe>
<unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe>
<archive>
http://nagoya.apache.org:8080/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org
</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<name>Scott Sanders</name>
<id>sanders</id>
<email>sanders@apache.org</email>
<organization></organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>dIon Gillard</name>
<id>dion</id>
<email>dion@apache.org</email>
<organization></organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>Nicola Ken Barozzi</name>
<id>nicolaken</id>
<email>nicolaken@apache.org</email>
<organization></organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>Henri Yandell</name>
<id>bayard</id>
<email>bayard@apache.org</email>
<organization></organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>Stephen Colebourne</name>
<id>scolebourne</id>
<email>scolebourne@apache.org</email>
<organization>SITA ATS</organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>Jeremias Maerki</name>
<id>jeremias</id>
<email>jeremias@apache.org</email>
<organization/>
<roles>
<role>Java Developer</role>
</roles>
<url>http://nagoya.apache.org/wiki/apachewiki.cgi?JeremiasMaerki</url>
<timezone>+1</timezone>
</developer>
<developer>
<name>Matthew Hawthorne</name>
<id>matth</id>
<email>matth@apache.org</email>
<organization/>
<roles>
<role>Java Developer</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>Alban Peignier</name>
<email>alban.peignier at free.fr</email>
</contributor>
</contributors>
<!-- Need to mark these as compile-time/run-time -->
<dependencies>
<dependency>
<id>junit</id>
<version>3.8.1</version>
</dependency>
</dependencies>
<build>
<nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>
<sourceDirectory>src/java</sourceDirectory>
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
<integrationUnitTestSourceDirectory/>
<aspectSourceDirectory/>
<!-- Unit test classes -->
<!-- TODO Organize test inclusions and exclusions -->
<unitTest>
<includes>
<include>**/*Test*</include>
</includes>
<excludes>
<exclude>**/testtools/**</exclude>
<exclude>**/IOUtilTestCase*</exclude>
</excludes>
<resources>
<resource>
<directory>data/test</directory>
</resource>
</resources>
</unitTest>
<!-- J A R R E S O U R C E S -->
<!-- Resources that are packaged up inside the JAR file -->
<resources>
<resource>
<includes>
<include>**/*.properties</include>
</includes>
</resource>
</resources>
</build>
<reports>
<report>maven-javadoc-plugin</report>
<report>maven-junit-report-plugin</report>
<report>maven-jxr-plugin</report>
<report>maven-checkstyle-plugin</report>
<report>maven-clover-plugin</report>
<report>maven-linkcheck-plugin</report>
<report>maven-pmd-plugin</report>
<report>maven-changes-plugin</report>
<report>maven-changelog-plugin</report>
<report>maven-developer-activity-plugin</report>
<report>maven-file-activity-plugin</report>
<report>maven-statcvs-plugin</report>
</reports>
</project>