<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>net.shrine</groupId>
    <artifactId>shrine-base</artifactId>
    <version>4.4.1</version>
    <relativePath>/../../pom.xml</relativePath>
  </parent>
  <groupId>net.shrine</groupId>
  <artifactId>mockcrc-war</artifactId>
  <version>4.4.1</version>
  <packaging>war</packaging>
  <name>Mock CRC War</name>
  <dependencies>
    <dependency>
      <groupId>net.shrine</groupId>
      <artifactId>mockcrc-app</artifactId>
      <version>${project.version}</version>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <version>${maven-exec-plugin-version}</version>
        <executions>
          <execution>
            <goals>
              <goal>exec</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <executable>../vagrant_deploy.sh</executable>
          <workingDirectory>.</workingDirectory>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
