2005-07-31 12:02:31 -04:00
|
|
|
<project>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-07-31 21:05:38 -04:00
|
|
|
<artifactId>maven-it0043</artifactId>
|
2005-07-31 12:02:31 -04:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>central</id>
|
|
|
|
<name>Empty Repository</name>
|
|
|
|
<url>file:/tmp/emptyRepo</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
2005-09-15 05:13:28 -04:00
|
|
|
<id>central</id>
|
2005-07-31 12:02:31 -04:00
|
|
|
<name>Empty Repository</name>
|
|
|
|
<url>file:/tmp/emptyRepo</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
|
2005-07-31 21:05:38 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2005-07-31 12:02:31 -04:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2006-03-28 20:17:15 -05:00
|
|
|
<artifactId>maven-help-plugin</artifactId>
|
2005-07-31 12:02:31 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>generate-test-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>effective-pom</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2005-07-31 21:05:38 -04:00
|
|
|
<output>${project.build.directory}/effective-pom.xml</output>
|
2005-07-31 12:02:31 -04:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|