Skip to content

Commit d39c6c9

Browse files
committed
Removed extend, migrated repository, Apache project metadata and adjusted build settings appropriately.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/cli/trunk@130047 13f79535-47bb-0310-9956-ffa450edef68
1 parent 3e71152 commit d39c6c9

1 file changed

Lines changed: 85 additions & 21 deletions

File tree

project.xml

Lines changed: 85 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,72 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
Copyright 2001-2004 The Apache Software Foundation
24
5+
Licensed under the Apache License, Version 2.0 (the "License");
6+
you may not use this file except in compliance with the License.
7+
You may obtain a copy of the License at
8+
9+
http://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
-->
317
<project>
4-
<extend>../commons-build/project.xml</extend>
18+
<pomVersion>3</pomVersion>
519
<id>commons-cli</id>
620
<name>CLI</name>
7-
821
<currentVersion>1.0</currentVersion>
22+
<inceptionYear>2002</inceptionYear>
23+
<shortDescription>Commons CLI</shortDescription>
24+
<description>Commons CLI provides a simple API for working with the command line arguments and options.</description>
25+
<logo>/images/logo.png</logo>
26+
27+
<url>http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</url>
28+
<package>org.apache.commons.${pom.artifactId.substring(8)}</package>
929

1030
<organization>
11-
<name>Apache Software Foundation</name>
12-
<url>http://www.apache.org</url>
13-
<logo>http://jakarta.apache.org/images/jakarta-logo.gif</logo>
31+
<name>The Apache Software Foundation</name>
32+
<url>http://jakarta.apache.org</url>
33+
<logo>http://jakarta.apache.org/images/original-jakarta-logo.gif</logo>
1434
</organization>
15-
16-
<inceptionYear>2002</inceptionYear>
17-
<shortDescription>Commons CLI</shortDescription>
35+
36+
<licenses>
37+
<license>
38+
<name>The Apache Software License, Version 2.0</name>
39+
<url>/LICENSE.txt</url>
40+
<distribution>repo</distribution>
41+
</license>
42+
</licenses>
43+
1844
<gumpRepositoryId>jakarta</gumpRepositoryId>
19-
<logo>/images/logo.png</logo>
45+
<issueTrackingUrl>http://issues.apache.org/bugzilla/</issueTrackingUrl>
46+
<siteAddress>jakarta.apache.org</siteAddress>
47+
<siteDirectory>/www/jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</siteDirectory>
48+
<distributionDirectory>/www/jakarta.apache.org/builds/jakarta-commons/${pom.artifactId.substring(8)}/</distributionDirectory>
2049

21-
<description>
22-
Commons CLI provides a simple API for working with the command line arguments and options.
23-
</description>
50+
<repository>
51+
<connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-commons/${pom.artifactId.substring(8)}</connection>
52+
<url>http://cvs.apache.org/viewcvs/jakarta-commons/${pom.artifactId.substring(8)}/</url>
53+
</repository>
2454

55+
<mailingLists>
56+
<mailingList>
57+
<name>Commons Dev List</name>
58+
<subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe>
59+
<unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe>
60+
<archive>http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org</archive>
61+
</mailingList>
62+
<mailingList>
63+
<name>Commons User List</name>
64+
<subscribe>commons-user-subscribe@jakarta.apache.org</subscribe>
65+
<unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe>
66+
<archive>http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org</archive>
67+
</mailingList>
68+
</mailingLists>
69+
2570
<developers>
2671
<developer>
2772
<name>James Strachan</name>
@@ -82,16 +127,35 @@
82127
</dependency>
83128

84129
</dependencies>
130+
85131

86-
<build>
87-
<!-- Unit test classes -->
88-
<unitTest>
89-
<includes>
90-
<include>**/*Test*.java</include>
91-
</includes>
92-
</unitTest>
93-
</build>
94-
132+
<build>
133+
<nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>
134+
<sourceDirectory>src/java</sourceDirectory>
135+
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
136+
<integrationUnitTestSourceDirectory/>
137+
<aspectSourceDirectory/>
138+
139+
<!-- Unit test classes -->
140+
<unitTest>
141+
<directory>${pom.build.unitTestSourceDirectory}</directory>
142+
<includes>
143+
<include>**/*Test*.java</include>
144+
</includes>
145+
</unitTest>
146+
147+
<!-- Integration unit test classes -->
148+
<integrationUnitTestPatterns></integrationUnitTestPatterns>
149+
150+
<resources>
151+
<includes>
152+
<include>**/*.properties</include>
153+
</includes>
154+
</resources>
155+
<jars/>
156+
</build>
157+
158+
95159
<reports>
96160
<report>maven-changelog-plugin</report>
97161
<report>maven-changes-plugin</report>

0 commit comments

Comments
 (0)