Skip to content

Commit 320bd0a

Browse files
committed
Created a maven POM and added myself to STATUS
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@140326 13f79535-47bb-0310-9956-ffa450edef68
1 parent b0a7010 commit 320bd0a

2 files changed

Lines changed: 133 additions & 1 deletion

File tree

STATUS.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<div align="center">
99
<h1>The Jakarta Commons <em>IO</em> Component</h1>
10-
$Id: STATUS.html,v 1.3 2002/07/08 22:11:19 nicolaken Exp $<br>
10+
$Id: STATUS.html,v 1.4 2002/11/12 07:38:28 bayard Exp $<br>
1111
<a href="#Introduction">[Introduction]</a> <a href="#Dependencies">[Dependencies]</a>
1212
<a href="#Release%20Info">[Release Info]</a> <a href="#Committers">[Committers]</a>
1313
<a href="#Action%20Items">[Action Items]</a> <br>
@@ -51,6 +51,7 @@ <h3>4. COMMITTERS</h3>
5151
<li><a href="mailto:sanders@apache.org">Scott Sanders</a></li>
5252
<li><a href="mailto:dion@apache.org">dIon Gillard</a></li>
5353
<li><a href="maito:nicolaken@apache.org">Nicola Ken Barozzi</a><br>
54+
<li><a href="maito:bayard@apache.org">Henri Yandell</a><br>
5455
</li>
5556
<li>Fancy volunteering? We need you!</li>
5657

project.xml

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
<?xml version="1.0"?>
2+
<project>
3+
4+
<version>3</version>
5+
<name>commons-io</name>
6+
<id>commons-io</id>
7+
<currentVersion>SNAPSHOT</currentVersion>
8+
9+
<organization>
10+
<name>Apache Software Foundation</name>
11+
<url>http://www.apache.org</url>
12+
<logo>/images/jakarta-logo-blue.gif</logo>
13+
</organization>
14+
<logo>/images/logo.jpg</logo>
15+
16+
<inceptionYear>2002</inceptionYear>
17+
<package>org.apache.commons.io</package>
18+
19+
<shortDescription>Java Common IO Components</shortDescription>
20+
21+
<!-- Gump integration -->
22+
<gumpRepositoryId>jakarta-io</gumpRepositoryId>
23+
24+
<description>
25+
Commons.IO is a package of Java utility classes for ther classes that are in java.io's hierarchy, or are considered to be so standard and of such high reuse as to justify existence in java.io.
26+
</description>
27+
28+
<url>http://jakarta.apache.org/commons/io/</url>
29+
<cvsWebUrl>http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/io/</cvsWebUrl>
30+
<issueTrackingUrl>http://nagoya.apache.org:8080/scarab/servlet/scarab/</issueTrackingUrl>
31+
<siteAddress>jakarta.apache.org</siteAddress>
32+
<siteDirectory>/www/jakarta.apache.org/commons/sandbox/io/</siteDirectory>
33+
<distributionDirectory>/www/jakarta.apache.org/builds/jakarta-commons-sandbox/io/</distributionDirectory>
34+
35+
<mailingLists>
36+
<mailingList>
37+
<name>Commons User List</name>
38+
<subscribe>commons-user-subscribe@jakarta.apache.org</subscribe>
39+
<unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe>
40+
<archive>http://nagoya.apache.org:8080/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org</archive>
41+
</mailingList>
42+
<mailingList>
43+
<name>Commons Developer List</name>
44+
<subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe>
45+
<unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe>
46+
<archive>http://nagoya.apache.org:8080/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org</archive>
47+
</mailingList>
48+
</mailingLists>
49+
50+
<developers>
51+
<developer>
52+
<name>Scott Sanders</name>
53+
<id>sanders</id>
54+
<email>sanders@apache.org</email>
55+
<organization></organization>
56+
<roles>
57+
<role>Java Developer</role>
58+
</roles>
59+
</developer>
60+
<developer>
61+
<name>dIon Gillard</name>
62+
<id>dion</id>
63+
<email>dion@apache.org</email>
64+
<organization></organization>
65+
<roles>
66+
<role>Java Developer</role>
67+
</roles>
68+
</developer>
69+
<developer>
70+
<name>Nicola Ken Barozzi</name>
71+
<id>nicolaken</id>
72+
<email>nicolaken@apache.org</email>
73+
<organization></organization>
74+
<roles>
75+
<role>Java Developer</role>
76+
</roles>
77+
</developer>
78+
<developer>
79+
<name>Henri Yandell</name>
80+
<id>bayard</id>
81+
<email>bayard@apache.org</email>
82+
<organization></organization>
83+
<roles>
84+
<role>Java Developer</role>
85+
</roles>
86+
</developer>
87+
</developers>
88+
89+
90+
<!-- Need to mark these as compile-time/run-time -->
91+
92+
<dependencies>
93+
94+
<dependency>
95+
<id>junit</id>
96+
<version>3.7</version>
97+
</dependency>
98+
99+
</dependencies>
100+
101+
102+
103+
<build>
104+
105+
<nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>
106+
<sourceDirectory>src/java</sourceDirectory>
107+
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
108+
<integrationUnitTestSourceDirectory/>
109+
<aspectSourceDirectory/>
110+
111+
<!-- Unit test classes -->
112+
<unitTest>
113+
<includes>
114+
<include>**/Test*.java</include>
115+
</includes>
116+
</unitTest>
117+
118+
119+
<!-- Integration unit test classes -->
120+
<integrationUnitTestPatterns></integrationUnitTestPatterns>
121+
122+
<!-- J A R R E S O U R C E S -->
123+
<!-- Resources that are packaged up inside the JAR file -->
124+
<resources>
125+
<includes>
126+
<include>**/*.properties</include>
127+
</includes>
128+
</resources>
129+
</build>
130+
</project>
131+

0 commit comments

Comments
 (0)