<?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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>com.vertispan.j2cl</groupId>
    <artifactId>j2cl-parent</artifactId>
    <version>0.11.0-9336533b6</version>
  </parent>
  <artifactId>bootstrap</artifactId>
  <packaging>pom</packaging>
  <description>
    This project more or less consists of the bits of closure that are required in a j2cl-based app,
    plus the various parts of j2cl's js bootstrap that are not yet included in the jre.js.zip, like
    jre.js, primitives, nativebootstrap, and and vmbootstrap.
  </description>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>3.1.0</version>
          <executions>
            <execution>
              <phase>prepare-package</phase>
              <goals><goal>single</goal></goals>
            </execution>
          </executions>
        <configuration>
          <descriptors>
            <descriptor>assembly.xml</descriptor>
          </descriptors>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>