blob: e9d3e5d6fd6622e49b0b45c6f9decc57c99fb045 [file] [log] [blame]
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.its.mng3530</groupId>
<artifactId>build-path-project</artifactId>
<packaging>jar</packaging>
<version>1</version>
<name>project</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.its.mng3530</groupId>
<artifactId>build-path-maven-plugin</artifactId>
<version>1</version>
<executions>
<execution>
<id>set</id>
<goals>
<goal>set</goal>
</goals>
</execution>
<execution>
<id>validate</id>
<goals>
<goal>validate</goal>
</goals>
<configuration>
<buildDirectory>${project.build.directory}</buildDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>