<?xml version="1.0"?><project>
  <parent>
    <artifactId>mindquarry-webapp</artifactId>
    <groupId>com.mindquarry.webapp</groupId>
    <version>1.0-M1</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.mindquarry.launcher</groupId>
  <artifactId>mindquarry-launcher</artifactId>
  <name>Mindquarry Collaboration Server</name>
  <version>1.0-M1</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>
    <developer>
      <id>lars</id>
      <name>Lars Trieloff</name>
      <email>lars.trieloff@mindquarry.com</email>
      <organization>Mindquarry GmbH</organization>
      <organizationUrl>http://www.mindquarry.com</organizationUrl>
    </developer>
  </developers>
  <scm>
    <connection>scm:svn:https://www.mindquarry.org/repos/mindquarry-base/tags/mindquarry-1.1</connection>
    <developerConnection>scm:svn:https://www.mindquarry.org/repos/mindquarry-base/tags/mindquarry-1.1</developerConnection>
    <url>https://www.mindquarry.org/repos/mindquarry-base/tags/mindquarry-1.1</url>
  </scm>
  <build>
    <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-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://www.mindquarry.org/repos/mindquarry-webapp/tags/mindquarry-launcher/</tagBase>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>deploybuild</id>
      <activation>
        <property>
          <name>fullrelease</name>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.2-SNAPSHOT</version>
            <executions>
              <execution>
                <id>make-assembly</id>
                <phase>package</phase>
                <goals>
                  <goal>attached</goal>
                </goals>
              </execution>
            </executions>
            <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>
        </plugins>
      </build>
    </profile>
  </profiles>
  <dependencies>
    <dependency>
      <groupId>com.mindquarry.webapp</groupId>
      <artifactId>mindquarry-webapplication</artifactId>
      <version>1.0-M1</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>