<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
  <parent>
    <artifactId>jboss-javaee-8.0</artifactId>
    <groupId>org.jboss.spec</groupId>
    <version>1.0.2.Final</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>jboss-javaee-all-8.0</artifactId>
  <name>JBoss Java EE 8 Specification APIs - All</name>
  <description>Combine jar files which includes all Java EE 8 Spec APIs</description>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <id>create-uber-jar</id>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <createSourcesJar>true</createSourcesJar>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
