|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + Copyright 2001-2004 The Apache Software Foundation |
2 | 4 |
|
| 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 | +--> |
3 | 17 | <project> |
4 | | - <extend>../commons-build/project.xml</extend> |
| 18 | + <pomVersion>3</pomVersion> |
5 | 19 | <id>commons-cli</id> |
6 | 20 | <name>CLI</name> |
7 | | - |
8 | 21 | <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> |
9 | 29 |
|
10 | 30 | <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> |
14 | 34 | </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 | + |
18 | 44 | <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> |
20 | 49 |
|
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> |
24 | 54 |
|
| 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 | + |
25 | 70 | <developers> |
26 | 71 | <developer> |
27 | 72 | <name>James Strachan</name> |
|
82 | 127 | </dependency> |
83 | 128 |
|
84 | 129 | </dependencies> |
| 130 | + |
85 | 131 |
|
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 | + |
95 | 159 | <reports> |
96 | 160 | <report>maven-changelog-plugin</report> |
97 | 161 | <report>maven-changes-plugin</report> |
|
0 commit comments