mirror of https://github.com/apache/maven.git
27 lines
804 B
XML
27 lines
804 B
XML
<model>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-core-it0002</artifactId>
|
|
<description>Builds upon it0001: we add the download of a dependency. We delete
|
|
the JAR from the local repository and make sure it is there post build.
|
|
</description>
|
|
<packaging>jar</packaging>
|
|
<version>1.0</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<type>jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-core-it-support</artifactId>
|
|
<version>1.0</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</model>
|