<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.artificer.demos</groupId>
    <artifactId>artificer-demos</artifactId>
    <version>1.0.0.Beta2</version>
    <relativePath>../../pom.xml</relativePath>
  </parent>
  <artifactId>artificer-demos-xsd-wsdl-impact-analysis</artifactId>
  <name>Artificer End-to-End Use Case: Impact Analysis with XSDs, WSDLs, and Large Development Teams</name>
  <dependencies>
    <dependency>
      <groupId>org.artificer</groupId>
      <artifactId>artificer-api</artifactId>
    </dependency>
  </dependencies>
  <profiles>
    <profile>
      <id>demo</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <executions>
              <execution>
                <id>demo</id>
                <phase>test</phase>
                <goals>
                  <goal>java</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <mainClass>org.artificer.demos.endtoend.impactanalysis.ImpactAnalysisDemo</mainClass>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>
