mirror of
https://github.com/apache/maven.git
synced 2025-02-06 18:18:48 +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
36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<model 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>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-mboot</artifactId>
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
<name>Maven MBoot</name>
|
|
<description>Tool used to bootstrap m2.</description>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.codehaus.modello</groupId>
|
|
<artifactId>modello-plugin-xpp3</artifactId>
|
|
<version>1.0-alpha-4-SNAPSHOT</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<!-- Just for install... possibly not needed here? -->
|
|
<dependency>
|
|
<groupId>classworlds</groupId>
|
|
<artifactId>classworlds</artifactId>
|
|
<version>1.1-alpha-1</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-container-default</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</model>
|