mirror of
https://github.com/apache/maven.git
synced 2025-02-06 10:09:04 +00:00
d396f24642
under dependencyManagement of m2 and maven-plugins, and removed versions in all poms having either as a parent. Used version 1.0.2-SNAPSHOT for plexus-utils as that was used in maven-core and is not overridable. o Bumped maven-archiver version to 2.0-beta-1-SNAPSHOT for maven-ear-plugin git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@227084 13f79535-47bb-0310-9956-ffa450edef68
25 lines
839 B
XML
25 lines
839 B
XML
<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">
|
|
<parent>
|
|
<artifactId>maven</artifactId>
|
|
<groupId>org.apache.maven</groupId>
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
</parent>
|
|
<groupId>org.apache.maven</groupId>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>maven-artifact</artifactId>
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
<name>Maven Artifact</name>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-container-default</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|