2005-07-21 09:58:42 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2005-08-01 02:42:18 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2005-03-17 17:56:42 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2005-03-23 01:52:55 -05:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-03-17 17:56:42 -05:00
|
|
|
<artifactId>repoclean</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<name>Maven v3-to-v4 Repository Cleaner</name>
|
2005-07-31 22:12:11 -04:00
|
|
|
|
2005-03-17 17:56:42 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
2005-07-31 22:12:11 -04:00
|
|
|
<version>1.0-alpha-3</version>
|
2005-03-17 17:56:42 -05:00
|
|
|
</dependency>
|
2005-04-05 21:28:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus-mail-sender-api</artifactId>
|
2005-07-31 22:12:11 -04:00
|
|
|
<version>1.0-alpha-1</version>
|
2005-04-05 21:28:29 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus-mail-sender-simple</artifactId>
|
2005-07-31 22:12:11 -04:00
|
|
|
<version>1.0-alpha-1</version>
|
2005-04-05 21:28:29 -04:00
|
|
|
</dependency>
|
2005-03-17 17:56:42 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>classworlds</groupId>
|
|
|
|
<artifactId>classworlds</artifactId>
|
|
|
|
<version>1.1-alpha-1</version>
|
|
|
|
</dependency>
|
2005-03-22 23:53:30 -05:00
|
|
|
<dependency>
|
2005-03-31 19:24:45 -05:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-03-22 23:53:30 -05:00
|
|
|
<artifactId>maven-artifact</artifactId>
|
2005-08-01 02:42:18 -04:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2005-03-22 23:53:30 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2005-03-31 19:24:45 -05:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-08-01 02:42:18 -04:00
|
|
|
<artifactId>maven-artifact-manager</artifactId>
|
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2005-07-31 23:39:36 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2005-08-01 02:42:18 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-07-31 23:39:36 -04:00
|
|
|
<artifactId>maven-model</artifactId>
|
2005-08-01 02:42:18 -04:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
|
|
<classifier>all</classifier>
|
2005-03-22 23:53:30 -05:00
|
|
|
</dependency>
|
2005-03-17 17:56:42 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2005-07-31 22:12:11 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<descriptor>src/assembly/bin.xml</descriptor>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-08-31 21:07:21 -04:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>snapshots</id>
|
|
|
|
<name>Maven Central Development Repository</name>
|
|
|
|
<url>http://snapshots.maven.codehaus.org/maven2</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2005-03-23 01:52:55 -05:00
|
|
|
</project>
|