<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">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.nuxeo.ecm.distribution</groupId>
    <artifactId>nuxeo-distribution</artifactId>
    <version>5.4.1-HF11</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

  <artifactId>nuxeo-distribution-resources</artifactId>
  <packaging>pom</packaging>
  <name>Nuxeo Distribution Resources</name>
  <description>
    Resources files for Nuxeo distributions
  </description>

  <profiles>
    <profile>
      <id>all-distributions</id>
      <!-- profile for building all classifiers -->
    </profile>
    <profile>
      <id>all</id>
      <!-- profile for building all classifiers -->
    </profile>
  </profiles>

  <dependencies>
    <dependency>
      <groupId>org.nuxeo</groupId>
      <artifactId>nuxeo-launcher</artifactId>
      <classifier>jar-with-dependencies</classifier>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.nuxeo.build</groupId>
        <artifactId>nuxeo-distribution-tools</artifactId>
        <executions>
          <execution>
            <id>assemble</id>
            <phase>package</phase>
            <configuration>
              <buildFiles>
                <buildFile>${basedir}/src/main/assemble/assembly.xml</buildFile>
              </buildFiles>
            </configuration>
            <goals>
              <goal>build</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

</project>
