<?xml version="1.0"?><project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>de.tomas-teubner</groupId>
  <artifactId>docsite</artifactId>
  <name>Document Site Generator</name>
  <version>2.0.1</version>
  <description>Document Site Generator</description>
  <url>http://tsteub.dnsalias.org/maven/site/tools/${pom.artifactId}/2.0.1</url>
  <inceptionYear>2007</inceptionYear>
  <developers>
    <developer>
      <id>tomas</id>
      <name>Tomas Teubner</name>
      <email>tomas@tomas-teubner.de</email>
      <url>http://www.tomas-teubner.de</url>
      <roles>
        <role>Developer</role>
      </roles>
    </developer>
  </developers>
  <licenses>
    <license>
      <name>tt Software License</name>
      <url>/LICENSE.txt</url>
    </license>
  </licenses>
  <scm>
    <connection>scm:svn:https://tsteub.dnsalias.org/repos/tomas/java/tools/docsite/tags/docsite-2.0.1</connection>
    <developerConnection>scm:svn:https://tsteub.dnsalias.org/repos/tomas/java/tools/docsite/tags/docsite-2.0.1</developerConnection>
    <url>https://tsteub.dnsalias.org/viewcvs/java/tools/docsite/tags/docsite-2.0.1?root=SVN+tomas</url>
  </scm>
  <organization>
    <name>Tomas Teubner</name>
    <url>http://www.tomas-teubner.de</url>
  </organization>
  <build>
    <resources>
      <resource>
        <filtering>true</filtering>
        <directory>src/main/resources</directory>
        <excludes>
          <exclude>**/*.gif</exclude>
        </excludes>
      </resource>
      <resource>
        <directory>src/main/resources</directory>
        <includes>
          <include>**/*.gif</include>
        </includes>
      </resource>
    </resources>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-site-plugin</artifactId>
        <configuration>
          <locales>en</locales>
        </configuration>
      </plugin>
      <plugin>
        <groupId>com.akathist.maven.plugins.launch4j</groupId>
        <artifactId>launch4j-maven-plugin</artifactId>
        <executions>
          <execution>
            <id>l4j-gui</id>
            <phase>package</phase>
            <goals>
              <goal>launch4j</goal>
            </goals>
            <configuration>
              <headerType>gui</headerType>
              <jar>target/${pom.artifactId}-2.0.1.jar</jar>
              <outfile>target/${pom.artifactId}-2.0.1.exe</outfile>
              <errTitle>${pom.name} 2.0.1</errTitle>
              <cmdLine></cmdLine>
              <chdir></chdir>
              <priority>normal</priority>
              <downloadUrl>http://java.com/download</downloadUrl>
              <supportUrl></supportUrl>
              <customProcName>true</customProcName>
              <stayAlive>false</stayAlive>
              <icon>src/main/resources/docsite.ico</icon>
              <classPath>
                <mainClass>local.tomas.docsite.Main</mainClass>
                <addDependencies>true</addDependencies>
                <jarLocation>lib/</jarLocation>
              </classPath>
              <jre>
                <minVersion>1.6.0</minVersion>
              </jre>
              <versionInfo>
                <fileVersion>2.0.1.0</fileVersion>
                <txtFileVersion>2.0.1</txtFileVersion>
                <fileDescription>${pom.name}</fileDescription>
                <copyright>${pom.organization.name} 2007</copyright>
                <productVersion>2.0.1.0</productVersion>
                <txtProductVersion>2.0.1</txtProductVersion>
                <productName>${pom.name}</productName>
                <companyName>${pom.organization.name}</companyName>
                <internalName>${pom.artifactId}</internalName>
                <originalFilename>${pom.artifactId}.exe</originalFilename>
              </versionInfo>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
          <descriptors>
            <descriptor>src/main/assembly/bin.xml</descriptor>
          </descriptors>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>release-profile</id>
      <activation>
        <property>
          <name>performRelease</name>
          <value>true</value>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.1</version>
            <executions>
              <execution>
                <id>release</id>
                <phase>package</phase>
                <goals>
                  <goal>assembly</goal>
                </goals>
                <inherited>false</inherited>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
  <dependencies>
    <dependency>
      <groupId>com.enterprisedt</groupId>
      <artifactId>edtFTPj</artifactId>
      <version>1.5.5-tt</version>
    </dependency>
    <dependency>
      <groupId>de.tomas-teubner</groupId>
      <artifactId>common-util</artifactId>
      <version>2.0.0</version>
    </dependency>
    <dependency>
      <groupId>xalan</groupId>
      <artifactId>xalan</artifactId>
      <version>2.7.0</version>
    </dependency>
    <dependency>
      <groupId>xerces</groupId>
      <artifactId>xercesImpl</artifactId>
      <version>2.4.0</version>
    </dependency>
    <dependency>
      <groupId>commons-collections</groupId>
      <artifactId>commons-collections</artifactId>
      <version>3.1</version>
    </dependency>
    <dependency>
      <groupId>commons-lang</groupId>
      <artifactId>commons-lang</artifactId>
      <version>2.1</version>
    </dependency>
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.1</version>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.14</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
  <reporting>
    <plugins>
      <plugin>
        <artifactId>maven-project-info-reports-plugin</artifactId>
      </plugin>
    </plugins>
  </reporting>
  <distributionManagement>
    <repository>
      <id>tomas-ssh</id>
      <name>Repository Name</name>
      <url>scp://ssh.tsteub.dnsalias.org/usr/export/srv/www/htdocs/maven/repository</url>
    </repository>
    <snapshotRepository>
      <id>snapshot-repo</id>
      <url>file://${settings.localRepository}</url>
    </snapshotRepository>
    <site>
      <id>tomas-ssh</id>
      <name>Maven Site</name>
      <url>scp://ssh.tsteub.dnsalias.org/usr/export/srv/www/htdocs/maven/site/tools/${pom.artifactId}/2.0.1</url>
    </site>
    <status>deployed</status>
  </distributionManagement>
  <properties>
    <currentVersion>2.0.1</currentVersion>
  </properties>
</project>