mirror of https://github.com/apache/maven.git
48 lines
1.3 KiB
XML
48 lines
1.3 KiB
XML
<project>
|
|
<parent>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<version>2.0-beta-1</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>org.apache.maven</groupId>
|
|
<artifactId>maven-project</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>surefire</groupId>
|
|
<artifactId>surefire</artifactId>
|
|
<version>1.4-SNAPSHOT</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>surefire</groupId>
|
|
<artifactId>surefire-booter</artifactId>
|
|
<version>1.4-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
<version>1.0.3</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|