<?xml version="1.0"?>
<project
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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>org.jbpm</groupId>
    <artifactId>jbpm-workitems</artifactId>
    <version>7.28.0.Final</version>
  </parent>

  <artifactId>jbpm-workitems-template-resources</artifactId>
  <name>Template Resources</name>
  <description>Shared Template Resources</description>
  <organization>
    <name>jBPM dev team</name>
  </organization>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-remote-resources-plugin</artifactId>
        <version>1.5</version>
        <executions>
          <execution>
            <goals>
              <goal>bundle</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <includes>
            <include>**/*.st</include>
            <include>**/*.part</include>
            <include>**/*.html</include>
            <include>**/*.js</include>
          </includes>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>