Skip to content

Commit a13b78b

Browse files
committed
o project.xml now inherits
o adding maven.xml git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/cli/trunk@129787 13f79535-47bb-0310-9956-ffa450edef68
1 parent 991e627 commit a13b78b

2 files changed

Lines changed: 17 additions & 52 deletions

File tree

maven.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<project default="java:jar"
2+
xmlns:j="jelly:core">
3+
4+
</project>

project.xml

Lines changed: 13 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,19 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<project>
4-
<pomVersion>3</pomVersion>
4+
<extend>../project.xml</extend>
5+
<id>commons-cli</id>
56
<name>commons-cli</name>
67

7-
<id>commons-cli</id>
88
<currentVersion>1.0-dev</currentVersion>
9-
<organization>
10-
<name>Apache Software Foundation</name>
11-
<url>http://www.apache.org</url>
12-
</organization>
139
<inceptionYear>2002</inceptionYear>
14-
<package>org.apache.commons.cli</package>
1510
<shortDescription>Commons CLI</shortDescription>
16-
1711
<gumpRepositoryId>jakarta</gumpRepositoryId>
1812

1913
<description>
2014
Commons CLI provdes a simple API for working with the command line arguments and options.
2115
</description>
2216

23-
<url>http://jakarta.apache.org/commons/cli.html</url>
24-
<issueTrackingUrl>http://nagoya.apache.org/</issueTrackingUrl>
25-
<siteAddress>jakarta.apache.org</siteAddress>
26-
<siteDirectory>/www/jakarta.apache.org/commons/cli/</siteDirectory>
27-
<distributionDirectory>/www/jakarta.apache.org/builds/jakarta-commons/cli/</distributionDirectory>
28-
<repository>
29-
<connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-commons/cli</connection>
30-
<url>http://cvs.apache.org/viewcvs/jakarta-commons/cli/</url>
31-
</repository>
32-
33-
<mailingLists>
34-
<mailingList>
35-
<name>Commons Dev List</name>
36-
<subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe>
37-
<unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe>
38-
<archive>http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org</archive>
39-
</mailingList>
40-
</mailingLists>
4117
<developers>
4218
<developer>
4319
<name>James Strachan</name>
@@ -58,39 +34,24 @@
5834
<organization>integral Source</organization>
5935
</developer>
6036
</developers>
37+
6138
<dependencies>
39+
6240
<dependency>
6341
<id>commons-logging</id>
64-
<type>required</type>
6542
<version>1.0</version>
66-
<!-- <jar>commons-logging-1.0.jar</jar> -->
6743
</dependency>
44+
6845
<dependency>
6946
<id>commons-lang</id>
70-
<type>required</type>
71-
<version>0.1-dev</version>
47+
<version>SNAPSHOT</version>
48+
</dependency>
49+
50+
<dependency>
51+
<id>junit</id>
52+
<version>3.7</version>
7253
</dependency>
54+
7355
</dependencies>
74-
<build>
75-
<nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>
76-
<sourceDirectory>src/java</sourceDirectory>
77-
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
78-
<integrationUnitTestSourceDirectory/>
79-
<aspectSourceDirectory/>
80-
<!-- Unit test classes -->
81-
82-
<unitTestPatterns>
83-
<unitTestPattern>include = **/*Test*.java</unitTestPattern>
84-
</unitTestPatterns>
85-
86-
<!-- Integration unit test classes -->
87-
<integrationUnitTestPatterns></integrationUnitTestPatterns>
88-
89-
<!-- J A R R E S O U R C E S -->
90-
<!-- Resources that are packaged up inside the JAR file -->
91-
92-
<jarResources>
93-
<jarResource>include = **/*.properties</jarResource>
94-
</jarResources>
95-
</build>
56+
9657
</project>

0 commit comments

Comments
 (0)