mirror of
https://github.com/apache/maven.git
synced 2025-02-10 03:56:01 +00:00
o Removed -cpl and related command line switches for controlling use of LATEST metadata for resolving plugin versions o Made LATEST the only metadata used to resolve plugin versions, since this is also available when releases are performed o Added various error diagnostics for project build exceptions o Enhanced artifact not found error diagnostics o Removed maven-project and added maven-artifact to maven-surefire-plugin's pom o Removed the stanza that added pluginArtifacts to the test-booter's classpath...they are already covered by the classpathElements o Fixed ITs in connection to the removal of -cpl o Changed the plugin manager to detect whether a plugin's artifact file has changed since the plugin container was created...if so, reload it. o Took the projecthelp plugin out of the build until I can diagnose the problems with its build (probably tomorrow). git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@312827 13f79535-47bb-0310-9956-ffa450edef68
61 lines
1.7 KiB
XML
61 lines
1.7 KiB
XML
<project>
|
|
<parent>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<version>2.0-beta-4-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
<name>Maven Surefire Plugin</name>
|
|
<version>2.0-beta-2-SNAPSHOT</version>
|
|
<contributors>
|
|
<contributor>
|
|
<name>Joakim Erdfelt</name>
|
|
<email>joakim@erdfelt.com</email>
|
|
</contributor>
|
|
</contributors>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>surefire</groupId>
|
|
<artifactId>surefire</artifactId>
|
|
<version>1.4-SNAPSHOT</version>
|
|
<scope>runtime</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>surefire</groupId>
|
|
<artifactId>surefire-booter</artifactId>
|
|
<version>1.4-SNAPSHOT</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
<version>1.0.4-SNAPSHOT</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-artifact</artifactId>
|
|
<version>2.0-beta-4-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|