Files
fs-maven-plugin/src/it/mkdir-empty/pom.xml
2026-04-20 17:47:10 -04:00

38 lines
939 B
XML

<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.inteligr8</groupId>
<artifactId>fs-maven-plugin-mkdir-empty</artifactId>
<version>@pom.version@</version>
<packaging>pom</packaging>
<name>Make Empty Directory Plugin Tests</name>
<build>
<plugins>
<plugin>
<groupId>@pom.groupId@</groupId>
<artifactId>@pom.artifactId@</artifactId>
<version>@pom.version@</version>
<executions>
<execution>
<id>mkdir-empty</id>
<phase>validate</phase>
<goals>
<goal>mkdir</goal>
</goals>
<configuration>
<paths></paths>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>