Skip to content

Commit 06aa39c

Browse files
committed
Fixed the test resources for Maven 2
Updated the pom to reflect the changes on the 1.x branch git-svn-id: https://svn.apache.org/repos/asf/commons/proper/cli/trunk@705669 13f79535-47bb-0310-9956-ffa450edef68
1 parent f564e78 commit 06aa39c

1 file changed

Lines changed: 22 additions & 24 deletions

File tree

pom.xml

Lines changed: 22 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@
1515
See the License for the specific language governing permissions and
1616
limitations under the License.
1717
-->
18-
<project
19-
xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
18+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2219
<parent>
2320
<groupId>org.apache.commons</groupId>
2421
<artifactId>commons-parent</artifactId>
@@ -32,8 +29,7 @@
3229

3330
<inceptionYear>2002</inceptionYear>
3431
<description>
35-
Commons CLI provides a simple API for presenting, processing and
36-
validating a command line interface.
32+
Commons CLI provides a simple API for presenting, processing and validating a command line interface.
3733
</description>
3834

3935
<url>http://commons.apache.org/cli/</url>
@@ -102,6 +98,12 @@
10298
<role>contributed ideas and code from Avalon Excalibur's cli package</role>
10399
</roles>
104100
</contributor>
101+
<contributor>
102+
<name>Brian Egge</name>
103+
<roles>
104+
<role>made the 1.1 release happen</role>
105+
</roles>
106+
</contributor>
105107
<contributor>
106108
<name>Berin Loritsch</name>
107109
<email>bloritsch@apache.org</email>
@@ -117,32 +119,29 @@
117119
<role>supplied patch</role>
118120
</roles>
119121
</contributor>
122+
<contributor>
123+
<name>Andrew Shirley</name>
124+
<roles>
125+
<role>lots of fixes for 1.1</role>
126+
</roles>
127+
</contributor>
120128
</contributors>
121129

122130
<dependencies>
123-
124131
<!-- used for unit tests -->
125132
<dependency>
126133
<groupId>junit</groupId>
127134
<artifactId>junit</artifactId>
128135
<version>3.8.1</version>
129136
<scope>test</scope>
130137
</dependency>
131-
132-
<!-- used for unit tests -->
133-
<dependency>
134-
<groupId>jdepend</groupId>
135-
<artifactId>jdepend</artifactId>
136-
<version>2.5</version>
137-
<scope>test</scope>
138-
</dependency>
139-
140138
</dependencies>
141139

142140
<properties>
143141
<commons.componentid>cli</commons.componentid>
142+
<commons.release.name>commons-cli-${commons.release.version}</commons.release.name>
144143
<commons.osgi.symbolicName>org.apache.commons.cli2</commons.osgi.symbolicName>
145-
<commons.release.version>1.1</commons.release.version>
144+
<commons.release.version>1.2</commons.release.version>
146145
<commons.binary.suffix></commons.binary.suffix>
147146
<commons.jira.id>CLI</commons.jira.id>
148147
<commons.jira.pid>12310463</commons.jira.pid>
@@ -169,13 +168,12 @@
169168
</resource>
170169
</resources>
171170
<testResources>
172-
<testResource>
173-
<directory>src/test/org/apache/commons/cli2/resource</directory>
174-
<targetPath>org/apache/commons/cli2/resource</targetPath>
175-
<includes>
176-
<include>**/*.properties</include>
177-
</includes>
178-
</testResource>
171+
<testResource>
172+
<directory>src/test</directory>
173+
<includes>
174+
<include>**/*.properties</include>
175+
</includes>
176+
</testResource>
179177
</testResources>
180178
<plugins>
181179
<plugin>

0 commit comments

Comments
 (0)