blob: e386a846eb517876c32775bf352ca2594c5246b7 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<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.mng3679</groupId>
<artifactId>test</artifactId>
<packaging>pom</packaging>
<version>1</version>
<name/>
<description/>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-log-file</artifactId>
<version>2.1-SNAPSHOT</version>
<executions>
<execution>
<id>${myExecId}</id>
<phase>validate</phase>
<goals>
<goal>log-string</goal>
</goals>
<configuration>
<logFile>target/check.txt</logFile>
<string>${myExecId}</string>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<myExecId>test-id</myExecId>
</properties>
</project>