[TOCM]
Implementation for the validateMarkerFiles PACIFy command.
<build>
<plugins>
<plugin>
<groupId>de.geewhiz.pacify</groupId>
<artifactId>pacify-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<goals>
<goal>validateMarkerFiles</goal>
</goals>
</execution>
</executions>
<configuration>
<packagePath>validate</packagePath>
</configuration>
</plugin>
</plugins>
</build>
Implementation for the preConfigure PACIFy command.
<build>
<plugins>
<plugin>
<groupId>de.geewhiz.pacify</groupId>
<artifactId>pacify-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<goals>
<goal>preConfigure</goal>
</goals>
</execution>
</executions>
<configuration>
<packagePath>target/folderToConfigure</packagePath>
</configuration>
</plugin>
</plugins>
</build>
Implementation for the replace PACIFy command.
<build>
<plugins>
<plugin>
<groupId>de.geewhiz.pacify</groupId>
<artifactId>pacify-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<goals>
<goal>replace</goal>
</goals>
</execution>
</executions>
<configuration>
<packagePath>target/folderToReplace</packagePath>
</configuration>
</plugin>
</plugins>
</build>
Here the options you can use within the Goals:
<build>
<plugins>
<plugin>
<groupId>de.geewhiz.pacify</groupId>
<artifactId>pacify-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<goals>
<goal>replace</goal>
</goals>
</execution>
</executions>
<configuration>
<packagePath>src/main/package</packagePath>
<copyTo>target/package</copyTo>
<resolvers>
<resolver>
<strategy>COMMAND_LINE</strategy>
</resolver>
<resolver>
<strategy>MAVEN_PROPERTIES</strategy>
</resolver>
<resolver>
<strategy>PROPERTY_FILE</strategy>
<propertyFile>src/main/properties/local.properties</propertyFile>
<beginToken>@</beginToken>
<endToken>@</endToken>
</resolver>
<resolver>
<strategy>PROPERTY_FILE</strategy>
<propertyFile>withinDependency/dependency.properties</propertyFile>
</resolver>
</resolvers>
</configuration>
<dependencies>
<dependency>
<groupId>foo</groupId>
<artifactId>aJarWhereThePropertyFileExists</artifactId>
<version>foo</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>