mirror of https://github.com/apache/maven.git
26 lines
774 B
XML
26 lines
774 B
XML
|
<project>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>org.apache.maven.its</groupId>
|
||
|
<artifactId>maven-integration-test-helper</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<name>Maven Integration Tests</name>
|
||
|
<dependencies>
|
||
|
<!-- needed for VersionRange and Version -->
|
||
|
<dependency>
|
||
|
<groupId>org.apache.maven</groupId>
|
||
|
<artifactId>maven-artifact</artifactId>
|
||
|
<version>2.0.5</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.maven.shared</groupId>
|
||
|
<artifactId>maven-verifier</artifactId>
|
||
|
<version>1.1-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>3.8.1</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|