initial checkin

This commit is contained in:
2026-04-20 17:47:10 -04:00
commit 94eaacdbde
19 changed files with 1735 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<?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>