mirror of
https://github.com/apache/maven.git
synced 2025-02-07 10:38:47 +00:00
Submitted by: Thomas Klaeger git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@389650 13f79535-47bb-0310-9956-ffa450edef68
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>
|