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
35 lines
922 B
XML
35 lines
922 B
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven</artifactId>
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>maven-repository-checker</artifactId>
|
|
<name>Maven Repository Checker</name>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-model</artifactId>
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<descriptor>src/assemble/bin.xml</descriptor>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|