mirror of https://github.com/apache/maven.git
51 lines
1.2 KiB
XML
51 lines
1.2 KiB
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-it0043</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>central</id>
|
|
<name>Empty Repository</name>
|
|
<url>file:/tmp/emptyRepo</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>central</id>
|
|
<name>Empty Repository</name>
|
|
<url>file:/tmp/emptyRepo</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<artifactId>junit</artifactId>
|
|
<groupId>junit</groupId>
|
|
<version>3.8.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-help-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>generate-test-resources</phase>
|
|
<goals>
|
|
<goal>effective-pom</goal>
|
|
</goals>
|
|
<configuration>
|
|
<output>${project.build.directory}/effective-pom.xml</output>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|