<?xml version="1.0"?><project>
  <parent>
    <artifactId>mindquarry-webapp</artifactId>
    <groupId>com.mindquarry.webapp</groupId>
    <version>0.0.1</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.mindquarry.launcher</groupId>
  <artifactId>mindquarry-launcher</artifactId>
  <name>Mindquarry Collaboration Server</name>
  <version>0.0.1</version>
  <description>Launcher for the Mindquarry Collaboration Server. The Mindquarry Collaboration Server enables teams to collaborate using document management, wikis, task management and conversation management.</description>
  <url>http://www.mindquarry.com</url>
  <developers>
    <developer>
      <id>alexs</id>
      <name>Alexander Saar</name>
      <email>alexander.saar@mindquarry.com</email>
      <organization>Mindquarry GmbH</organization>
      <organizationUrl>http://www.mindquarry.com</organizationUrl>
    </developer>
  </developers>
  <scm>
    <connection>scm:svn:https://secure.mindquarry.com/repos/mindquarry-webapp/tags/mindquarry-launcher/mindquarry-launcher-0.0.1</connection>
    <developerConnection>scm:svn:https://secure.mindquarry.com/repos/mindquarry-webapp/tags/mindquarry-launcher/mindquarry-launcher-0.0.1</developerConnection>
    <url>https://secure.mindquarry.com/repos/mindquarry-webapp/tags/mindquarry-launcher/mindquarry-launcher-0.0.1</url>
  </scm>
  <build>
    <finalName>mindquarry-0.0.1</finalName>
    <plugins>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifest>
              <mainClass>com.mindquarry.launcher.WebappLauncher</mainClass>
              <addClasspath>true</addClasspath>
            </manifest>
          </archive>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.1</version>
        <configuration>
          <descriptors>
            <descriptor>src/assembly/distributions/generic.xml</descriptor>
            <descriptor>src/assembly/distributions/linux_x86_32.xml</descriptor>
            <descriptor>src/assembly/distributions/windows_x86_32.xml</descriptor>
          </descriptors>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
              <tasks>
                <ant inheritRefs="true" antfile="${basedir}/build.xml">
                  <target name="run-nsis"></target>
                </ant>
              </tasks>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
        <configuration>
          <tagBase>https://secure.mindquarry.com/repos/mindquarry-webapp/tags/mindquarry-launcher/</tagBase>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>com.mindquarry.webapp</groupId>
      <artifactId>mindquarry-webapplication</artifactId>
      <version>0.0.1</version>
      <type>war</type>
    </dependency>
    <dependency>
      <groupId>org.mortbay.jetty</groupId>
      <artifactId>jetty</artifactId>
      <version>6.0.2</version>
    </dependency>
    <dependency>
      <groupId>org.mortbay.jetty</groupId>
      <artifactId>jsp-2.1</artifactId>
      <version>6.0.2</version>
    </dependency>
    <dependency>
      <groupId>tanukisoft</groupId>
      <artifactId>wrapper</artifactId>
      <version>3.2.0</version>
    </dependency>
  </dependencies>
  <distributionManagement>
    <status>deployed</status>
  </distributionManagement>
</project>