blob: ec44adb038e44aa44c8115a8746fe60ff6d251fb [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>
<version>1</version>
<packaging>pom</packaging>
<name />
<description />
<properties>
<myExecId>test-id</myExecId>
</properties>
<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>
<goals>
<goal>log-string</goal>
</goals>
<phase>validate</phase>
<configuration>
<logFile>target/check.txt</logFile>
<string>${myExecId}</string>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>