<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.3.2-HF07</version>
  </parent>

  <artifactId>nuxeo-windows-startup</artifactId>
  <packaging>zip</packaging>
  <name>Nuxeo Windows startup script</name>
  <description>Build Nuxeo Windows installer with MSBuild\n
  Requirements:\n
  * Wine (from apt sources) or Darwine (on Mac OS X)\n
  * Framework .NET 3.x\n
  </description>

  <properties>
    <win32startup.version>5.3.1_02</win32startup.version>
  </properties>

  <build>
    <plugins>
      <plugin>
        <groupId>org.nuxeo.build</groupId>
        <artifactId>nuxeo-distribution-tools</artifactId>
        <configuration>
          <buildFiles>
            <buildFile>${basedir}/src/main/assemble/assembly.xml</buildFile>
          </buildFiles>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>