mirror of
https://github.com/apache/maven.git
synced 2025-02-11 20:45:41 +00:00
Still need to clean up ~/maven2/lib and some large dependencies from marmalade that shouldn't be needed in general - but down to about a 3Mb repository. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163775 13f79535-47bb-0310-9956-ffa450edef68
40 lines
1.1 KiB
XML
40 lines
1.1 KiB
XML
<model>
|
|
<parent>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
<name>Maven Surefire Plugin</name>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>surefire</groupId>
|
|
<artifactId>surefire-booter</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
<!-- Specified for mboot -->
|
|
<dependency>
|
|
<groupId>surefire</groupId>
|
|
<artifactId>surefire</artifactId>
|
|
<version>1.2</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<!-- TODO: would like to remove -->
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-artifact</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</model>
|