2007-02-15 18:49:58 -05:00
|
|
|
<project>
|
2007-06-28 15:12:30 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2007-08-21 20:55:12 -04:00
|
|
|
<groupId>org.apache.maven.its</groupId>
|
2007-08-01 23:50:20 -04:00
|
|
|
<artifactId>maven-integration-test-sample</artifactId>
|
2007-02-15 18:49:58 -05:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<name>Maven Integration Tests</name>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
|
|
<artifactId>maven-verifier</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
2007-06-29 02:01:25 -04:00
|
|
|
<dependency>
|
2007-07-23 22:20:12 -04:00
|
|
|
<groupId>org.apache.maven.its</groupId>
|
|
|
|
<artifactId>maven-integration-test-helper</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2007-02-15 18:49:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2007-07-23 22:20:12 -04:00
|
|
|
<!-- TODO: remove when snapshots are released -->
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>apache.snapshots</id>
|
|
|
|
<url>http://people.apache.org/repo/m2-snapshot-repository</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2007-02-15 18:49:58 -05:00
|
|
|
</project>
|