<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.io</groupId>
    <artifactId>nuxeo-io-container-parent</artifactId>
    <version>6.0-HF10</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

  <artifactId>nuxeo-io-container-tomcat</artifactId>
  <name>nuxeo.io container Tomcat</name>
  <description>nuxeo.io container Tomcat</description>
  <packaging>pom</packaging>

  <dependencies>
    <dependency>
      <groupId>org.nuxeo.etcd</groupId>
      <artifactId>nuxeo-etcd</artifactId>
    </dependency>
    <dependency>
      <groupId>org.nuxeo.io</groupId>
      <artifactId>nuxeo-io-container</artifactId>
    </dependency>
    <dependency>
      <groupId>org.nuxeo.ecm.core</groupId>
      <artifactId>nuxeo-core-binarymanager-s3</artifactId>
    </dependency>
    <dependency>
      <groupId>org.nuxeo.logs.viewer</groupId>
      <artifactId>nuxeo-logs-viewer</artifactId>
    </dependency>
    <dependency>
      <groupId>org.nuxeo.lib</groupId>
      <artifactId>nuxeo-io-logger</artifactId>
    </dependency>
  </dependencies>

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

</project>