2006-07-01 10:27:10 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2006-07-07 08:23:28 -04:00
|
|
|
|
|
|
|
<!--
|
2007-02-28 17:47:31 -05:00
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you under the Apache License, Version 2.0 (the
|
|
|
|
"License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
|
|
software distributed under the License is distributed on an
|
|
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
KIND, either express or implied. See the License for the
|
|
|
|
specific language governing permissions and limitations
|
|
|
|
under the License.
|
|
|
|
-->
|
2006-07-07 08:23:28 -04:00
|
|
|
|
|
|
|
<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">
|
2005-06-21 02:49:49 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>maven</artifactId>
|
2005-09-15 22:50:12 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-12-12 13:22:06 -05:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
2005-06-21 02:49:49 -04:00
|
|
|
</parent>
|
2005-09-15 22:50:12 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2005-06-21 02:49:49 -04:00
|
|
|
<artifactId>maven-artifact-manager</artifactId>
|
2005-06-22 14:08:21 -04:00
|
|
|
<name>Maven Artifact Manager</name>
|
2005-06-21 02:49:49 -04:00
|
|
|
<dependencies>
|
2005-09-02 03:16:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-repository-metadata</artifactId>
|
2005-12-12 13:22:06 -05:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
2005-09-02 03:16:16 -04:00
|
|
|
</dependency>
|
2005-07-28 23:41:02 -04:00
|
|
|
<dependency>
|
2005-10-08 10:13:31 -04:00
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
2005-07-28 23:41:02 -04:00
|
|
|
<artifactId>plexus-utils</artifactId>
|
|
|
|
</dependency>
|
2005-09-15 22:50:12 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
2005-12-12 13:22:06 -05:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
2005-09-26 11:18:55 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2005-10-02 20:54:01 -04:00
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
2005-09-26 11:18:55 -04:00
|
|
|
<artifactId>plexus-container-default</artifactId>
|
2005-09-15 22:50:12 -04:00
|
|
|
</dependency>
|
2005-06-21 02:49:49 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
2007-02-09 16:53:27 -05:00
|
|
|
<artifactId>wagon-manager</artifactId>
|
|
|
|
<scope>compile</scope>
|
2005-06-21 02:49:49 -04:00
|
|
|
</dependency>
|
2006-09-01 11:29:52 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>easymock</groupId>
|
|
|
|
<artifactId>easymock</artifactId>
|
2006-09-04 16:24:31 -04:00
|
|
|
<version>1.2_Java1.3</version>
|
2006-09-05 03:39:44 -04:00
|
|
|
<scope>test</scope>
|
2006-09-01 11:29:52 -04:00
|
|
|
</dependency>
|
2005-06-21 02:49:49 -04:00
|
|
|
</dependencies>
|
2006-09-01 12:07:59 -04:00
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/testutils/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
2005-12-12 13:22:06 -05:00
|
|
|
</project>
|