<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>
  <artifactId>redhat-support-plugin</artifactId>

  <packaging>war</packaging>

  <parent>
    <groupId>org.jboss.hal</groupId>
    <artifactId>redhat-support-plugin-parent</artifactId>
    <version>0.9.4.Final</version>
  </parent>

  <build>
    <finalName>redhat-support</finalName>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <classesDirectory>target/redhat-support</classesDirectory>
          <excludes>
            <exclude>WEB-INF/**</exclude>
          </excludes>
          <classifier>resources</classifier>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>
