Skip to content

Commit 2013a1e

Browse files
committed
Removed extend and adjusted build settings appropriately.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130348 13f79535-47bb-0310-9956-ffa450edef68
1 parent 06157fe commit 2013a1e

1 file changed

Lines changed: 73 additions & 13 deletions

File tree

project.xml

Lines changed: 73 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,65 @@ See the License for the specific language governing permissions and
1515
limitations under the License.
1616
-->
1717
<project>
18-
<extend>../commons-build/project.xml</extend>
19-
<name>Codec</name>
18+
19+
<pomVersion>3</pomVersion>
20+
2021
<id>commons-codec</id>
2122
<currentVersion>1.3-dev</currentVersion>
22-
23-
<organization>
24-
<name>Apache Software Foundation</name>
25-
<url>http://www.apache.org</url>
26-
<logo>http://jakarta.apache.org/images/jakarta-logo.gif</logo>
27-
</organization>
28-
2923
<inceptionYear>2002</inceptionYear>
24+
<name>Codec</name>
3025
<shortDescription>Simple encoders and decoders</shortDescription>
3126
<description>
3227
The codec package contains simple encoder and decoders for
3328
various formats such as Base64 and Hexadecimal. In addition to these
3429
widely used encoders and decoders, the codec package also maintains a
3530
collection of phonetic encoding utilities.
3631
</description>
32+
<logo>/images/logo.png</logo>
33+
34+
<url>http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</url>
35+
<package>org.apache.commons.${pom.artifactId.substring(8)}</package>
36+
37+
<organization>
38+
<name>The Apache Software Foundation</name>
39+
<url>http://jakarta.apache.org</url>
40+
<logo>http://jakarta.apache.org/images/original-jakarta-logo.gif</logo>
41+
</organization>
42+
43+
<licenses>
44+
<license>
45+
<name>The Apache Software License, Version 2.0</name>
46+
<url>/LICENSE.txt</url>
47+
<distribution>repo</distribution>
48+
</license>
49+
</licenses>
50+
51+
<gumpRepositoryId>jakarta</gumpRepositoryId>
52+
<issueTrackingUrl>http://issues.apache.org/bugzilla/</issueTrackingUrl>
53+
<siteAddress>jakarta.apache.org</siteAddress>
54+
<siteDirectory>/www/jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</siteDirectory>
55+
<distributionDirectory>/www/jakarta.apache.org/builds/jakarta-commons/${pom.artifactId.substring(8)}/</distributionDirectory>
56+
57+
<repository>
58+
<connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-commons/${pom.artifactId.substring(8)}</connection>
59+
<url>http://cvs.apache.org/viewcvs/jakarta-commons/${pom.artifactId.substring(8)}/</url>
60+
</repository>
61+
62+
<mailingLists>
63+
<mailingList>
64+
<name>Commons Dev List</name>
65+
<subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe>
66+
<unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe>
67+
<archive>http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org</archive>
68+
</mailingList>
69+
<mailingList>
70+
<name>Commons User List</name>
71+
<subscribe>commons-user-subscribe@jakarta.apache.org</subscribe>
72+
<unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe>
73+
<archive>http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org</archive>
74+
</mailingList>
75+
</mailingLists>
76+
3777
<versions>
3878
<version>
3979
<id>1.1-rc1</id>
@@ -149,9 +189,18 @@ limitations under the License.
149189
</dependency>
150190
</dependencies>
151191
<issueTrackingUrl>http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;email1=&amp;emailtype1=substring&amp;emailassigned_to1=1&amp;email2=&amp;emailtype2=substring&amp;emailreporter2=1&amp;bugidtype=include&amp;bug_id=&amp;changedin=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;product=Commons&amp;component=Codec&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;long_desc=&amp;long_desc_type=allwordssubstr&amp;bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;keywords=&amp;keywords_type=anywords&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=&amp;cmdtype=doit&amp;newqueryname=&amp;order=Reuse+same+sort+as+last+time</issueTrackingUrl>
192+
152193
<build>
153-
<unitTest>
154-
<includes>
194+
<nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>
195+
<sourceDirectory>src/java</sourceDirectory>
196+
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
197+
<integrationUnitTestSourceDirectory/>
198+
<aspectSourceDirectory/>
199+
200+
<!-- Unit test classes -->
201+
<unitTest>
202+
<includes>
203+
<include>**/Test*.java</include>
155204
<include>**/*Test.java</include>
156205
</includes>
157206
<excludes>
@@ -165,8 +214,19 @@ limitations under the License.
165214
</includes>
166215
</resource>
167216
</resources>
168-
</unitTest>
169-
</build>
217+
</unitTest>
218+
219+
<!-- Integration unit test classes -->
220+
<integrationUnitTestPatterns></integrationUnitTestPatterns>
221+
222+
<resources>
223+
<includes>
224+
<include>**/*.properties</include>
225+
</includes>
226+
</resources>
227+
<jars/>
228+
</build>
229+
170230
<reports>
171231
<report>maven-changelog-plugin</report>
172232
<!-- <report>maven-changes-plugin</report> -->

0 commit comments

Comments
 (0)