<?xml version="1.0"?><project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>de.tomas-teubner</groupId>
  <artifactId>jdbc2http</artifactId>
  <name>JDBC over HTTP</name>
  <version>1.0.0</version>
  <description>JDBC over HTTP</description>
  <url>http://tsteub.dnsalias.org/maven/site/${pom.groupId}/${pom.artifactId}/1.0.0</url>
  <issueManagement>
    <system>Bugzilla</system>
    <url>https://tsteub.dnsalias.org/bugzilla</url>
  </issueManagement>
  <inceptionYear>2006</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://svn.tsteub.dnsalias.org/repos/tomas/java/jdbc2http/tags/jdbc2http-1.0.0</connection>
    <developerConnection>scm:svn:https://svn.tsteub.dnsalias.org/repos/tomas/java/jdbc2http/tags/jdbc2http-1.0.0</developerConnection>
    <url>https://tsteub.dnsalias.org/viewvc/java/jdbc2http/tags/jdbc2http-1.0.0?root=subversion</url>
  </scm>
  <organization>
    <name>Tomas Teubner</name>
    <url>http://www.tomas-teubner.de</url>
  </organization>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
        <configuration>
          <goals>site-deploy deploy</goals>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <configuration>
          <outputDirectory>target/apidocs</outputDirectory>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <configuration>
          <outputDirectory>${project.build.directory}</outputDirectory>
          <finalName>${project.build.finalName}</finalName>
          <attach>false</attach>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-surefire-report-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-site-plugin</artifactId>
        <configuration>
          <locales>en</locales>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
          <descriptors>
            <descriptor>src/main/assembly/bin.xml</descriptor>
            <descriptor>src/main/assembly/publish.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>de.tomas-teubner</groupId>
      <artifactId>ttlm</artifactId>
      <version>2.0.0</version>
    </dependency>
    <dependency>
      <groupId>commons-httpclient</groupId>
      <artifactId>commons-httpclient</artifactId>
      <version>3.0.1</version>
    </dependency>
    <dependency>
      <groupId>xerces</groupId>
      <artifactId>xerces</artifactId>
      <version>2.2.1</version>
    </dependency>
    <dependency>
      <groupId>xerces</groupId>
      <artifactId>xercesImpl</artifactId>
      <version>2.2.1</version>
    </dependency>
    <dependency>
      <groupId>xalan</groupId>
      <artifactId>xalan</artifactId>
      <version>2.7.0</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>
    </dependency>
    <dependency>
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
      <version>5.0.0-beta</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>commons-configuration</groupId>
      <artifactId>commons-configuration</artifactId>
      <version>1.2</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <reporting>
    <plugins>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <configuration>
          <header>jdbc2http driver</header>
          <source>1.5</source>
          <excludePackageNames>com.satline.jdbc.util.*:com.satline.util.*</excludePackageNames>
          <links>
            <link>http://java.sun.com/javase/6/docs/api/</link>
          </links>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-project-info-reports-plugin</artifactId>
        <reportSets>
          <reportSet>
            <reports>
              <report>dependencies</report>
              <report>project-team</report>
              <report>mailing-list</report>
              <report>cim</report>
              <report>issue-tracking</report>
              <report>license</report>
              <report>scm</report>
            </reports>
          </reportSet>
        </reportSets>
      </plugin>
      <plugin>
        <artifactId>maven-surefire-report-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/${pom.groupId}/${pom.artifactId}/1.0.0</url>
    </site>
    <downloadUrl>http://tsteub.dnsalias.org/maven/repository</downloadUrl>
    <status>deployed</status>
  </distributionManagement>
</project>