blob: 7bb29c4763cddbebd17b2f489094cf82834ce3f0 [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>pom-property-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>
<properties>
<myDirectory>something</myDirectory>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.its.mng3530</groupId>
<artifactId>pom-property-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>${myDirectory}</buildDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>