<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>
  <groupId>org.jdtaus</groupId>
  <artifactId>jdtaus-commons</artifactId>
  <packaging>pom</packaging>
  <name>jDTAUS Commons</name>
  <version>1.0</version>
  <description><![CDATA[
  jDTAUS Commons provides common application programming interface modules
  with corresponding reference implementations. This is the parent module
  of the commons artifacts.]]>
  </description>
  <url>http://sites.jdtaus.org/jdtaus-commons/1.0.x</url>
  <issueManagement>
    <system>Bugzilla</system>
    <url>http://bugzilla.jdtaus.org/cgi-bin/bugzilla/index.cgi</url>
  </issueManagement>
  <ciManagement>
    <system>Continuum</system>
    <url>http://continuum.jdtaus.org/continuum/</url>
    <notifiers>
      <notifier>
        <type>mail</type>
        <sendOnError>true</sendOnError>
        <sendOnFailure>true</sendOnFailure>
        <sendOnSuccess>false</sendOnSuccess>
        <sendOnWarning>false</sendOnWarning>
        <configuration>
          <address>support@jdtaus.org</address>
        </configuration>
      </notifier>
    </notifiers>
  </ciManagement>
  <inceptionYear>2007</inceptionYear>
  <mailingLists>
    <mailingList>
      <name>jdtaus-cvs</name>
      <subscribe>http://lists.sourceforge.net/lists/listinfo/jdtaus-cvs</subscribe>
      <unsubscribe>http://lists.sourceforge.net/lists/listinfo/jdtaus-cvs</unsubscribe>
      <post>jdtaus-cvs@lists.sourceforge.net</post>
      <archive>http://sourceforge.net/mailarchive/forum.php?forum=jdtaus-cvs</archive>
    </mailingList>
    <mailingList>
      <name>jdtaus-users</name>
      <subscribe>http://lists.sourceforge.net/lists/listinfo/jdtaus-users</subscribe>
      <unsubscribe>http://lists.sourceforge.net/lists/listinfo/jdtaus-users</unsubscribe>
      <post>jdtaus-users@lists.sourceforge.net</post>
      <archive>http://sourceforge.net/mailarchive/forum.php?forum=jdtaus-users</archive>
    </mailingList>
  </mailingLists>
  <developers>
    <developer>
      <id>schulte2005</id>
      <name>Christian Schulte</name>
      <email>cs@jdtaus.org</email>
      <roles>
        <role>Architect</role>
        <role>Java Developer</role>
      </roles>
      <timezone>+1</timezone>
    </developer>
  </developers>
  <licenses>
    <license>
      <name>The GNU Lesser General Public License, Version 2.1</name>
      <url>http://www.gnu.org/copyleft/lesser.txt</url>
      <distribution>manual</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:svn:https://jdtaus.svn.sourceforge.net/svnroot/jdtaus/jdtaus-commons/tags/jdtaus-commons-1.0</connection>
    <developerConnection>scm:svn:https://jdtaus.svn.sourceforge.net/svnroot/jdtaus/jdtaus-commons/tags/jdtaus-commons-1.0</developerConnection>
    <url>http://jdtaus.svn.sourceforge.net/viewcvs.cgi/jdtaus/jdtaus-commons/tags/jdtaus-commons-1.0</url>
  </scm>
  <organization>
    <name>jDTAUS</name>
    <url>http://www.jdtaus.org</url>
  </organization>
  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <configuration>
            <source>1.5</source>
            <target>1.5</target>
            <debug>true</debug>
            <encoding>UTF-8</encoding>
            <optimize>true</optimize>
            <showDeprecation>true</showDeprecation>
            <showWarnings>true</showWarnings>
          </configuration>
        </plugin>
        <plugin>
          <artifactId>maven-site-plugin</artifactId>
          <configuration>
            <inputEncoding>UTF-8</inputEncoding>
            <outputEncoding>UTF-8</outputEncoding>
            <locales>en</locales>
          </configuration>
        </plugin>
        <plugin>
          <artifactId>maven-resources-plugin</artifactId>
          <configuration>
            <encoding>UTF-8</encoding>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
    <plugins>
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
        <configuration>
          <tagBase>https://jdtaus.svn.sourceforge.net/svnroot/jdtaus/jdtaus-commons/tags</tagBase>
        </configuration>
      </plugin>

      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <id>sign</id>
            <phase>package</phase>
            <goals>
              <goal>sign</goal>
            </goals>
            <configuration>
              <storepass>${jarsign.storepass}</storepass>
              <keypass>${jarsign.keypass}</keypass>
              <alias>${jarsign.alias}</alias>
              <signedjar>${project.build.directory}/signed/${project.build.finalName}.jar</signedjar>
            </configuration>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <artifactId>maven-gpg-plugin</artifactId>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
            <configuration>
              <keyname>${gpg.keyname}</keyname>
              <passphrase>${gpg.passphrase}</passphrase>
            </configuration>
          </execution>
        </executions>
      </plugin>

    </plugins>
  </build>
  <modules>
    <module>jdtaus-correspondents-api</module>
    <module>jdtaus-correspondents-spi</module>
    <module>jdtaus-correspondents-messages</module>
    <module>jdtaus-correspondents-it</module>
    <module>jdtaus-correspondents-ri-jaxb</module>
    <module>jdtaus-sequences-api</module>
    <module>jdtaus-sequences-spi</module>
    <module>jdtaus-sequences-messages</module>
    <module>jdtaus-sequences-it</module>
    <module>jdtaus-sequences-ri-jaxb</module>
  </modules>
  <reporting>
    <plugins>
      <plugin>
        <artifactId>maven-project-info-reports-plugin</artifactId>
      </plugin>
    </plugins>
  </reporting>
  <dependencyManagement>
    <dependencies>
      <!-- Compile dependencies.                                             -->
      <dependency>
        <groupId>org.jdtaus.common</groupId>
        <artifactId>jdtaus-core-api</artifactId>
        <version>RELEASE</version>
        <scope>compile</scope>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.common</groupId>
        <artifactId>jdtaus-banking-api</artifactId>
        <version>RELEASE</version>
        <scope>compile</scope>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.core</groupId>
        <artifactId>jdtaus-core-spi</artifactId>
        <version>RELEASE</version>
        <scope>compile</scope>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.banking</groupId>
        <artifactId>jdtaus-banking-spi</artifactId>
        <version>RELEASE</version>
        <scope>compile</scope>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.core</groupId>
        <artifactId>jdtaus-core-utilities</artifactId>
        <version>RELEASE</version>
        <scope>compile</scope>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.banking</groupId>
        <artifactId>jdtaus-banking-utilities</artifactId>
        <version>RELEASE</version>
        <scope>compile</scope>
      </dependency>
      <dependency>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven-plugin-api</artifactId>
        <scope>compile</scope>
        <version>RELEASE</version>
      </dependency>
      <dependency>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven-project</artifactId>
        <scope>compile</scope>
        <version>RELEASE</version>
      </dependency>
      <dependency>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven-embedder</artifactId>
        <scope>compile</scope>
        <version>RELEASE</version>
      </dependency>
      <dependency>
        <groupId>org.apache.velocity</groupId>
        <artifactId>velocity</artifactId>
        <scope>compile</scope>
        <version>1.5</version>
      </dependency>
      <!-- Provided dependencies.                                            -->
      <dependency>
        <groupId>com.sun.xml.bind</groupId>
        <artifactId>jaxb-impl</artifactId>
        <version>2.0.5</version>
        <scope>provided</scope>
      </dependency>
      <dependency>
        <groupId>javax.xml.bind</groupId>
        <artifactId>jaxb-api</artifactId>
        <version>2.0</version>
        <scope>provided</scope>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.core</groupId>
        <artifactId>jdtaus-core-messages</artifactId>
        <version>RELEASE</version>
        <scope>provided</scope>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.banking</groupId>
        <artifactId>jdtaus-banking-messages</artifactId>
        <version>RELEASE</version>
        <scope>provided</scope>
      </dependency>
      <!-- Test dependencies.                                                -->
      <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>[3.8, 3.8.1]</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.core</groupId>
        <artifactId>jdtaus-core-it</artifactId>
        <version>RELEASE</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.banking</groupId>
        <artifactId>jdtaus-banking-it</artifactId>
        <version>RELEASE</version>
        <scope>test</scope>
      </dependency>
      <!-- Dependencies with unmanaged scope.                                -->
      <dependency>
        <groupId>org.jdtaus.core.text</groupId>
        <artifactId>jdtaus-core-application-logger</artifactId>
        <version>RELEASE</version>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.core.container</groupId>
        <artifactId>jdtaus-core-client-container</artifactId>
        <version>RELEASE</version>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.core.logging</groupId>
        <artifactId>jdtaus-core-jdk-logging</artifactId>
        <version>RELEASE</version>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.core.lang</groupId>
        <artifactId>jdtaus-core-memory-manager</artifactId>
        <version>RELEASE</version>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.core.lang</groupId>
        <artifactId>jdtaus-core-jdk14-executor</artifactId>
        <version>RELEASE</version>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.core.monitor</groupId>
        <artifactId>jdtaus-core-task-monitor</artifactId>
        <version>RELEASE</version>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.banking</groupId>
        <artifactId>jdtaus-banking-charsets</artifactId>
        <version>RELEASE</version>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.banking</groupId>
        <artifactId>jdtaus-banking-ri-bankleitzahlenverzeichnis</artifactId>
        <version>RELEASE</version>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.banking</groupId>
        <artifactId>jdtaus-banking-ri-currencydirectory</artifactId>
        <version>RELEASE</version>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.banking</groupId>
        <artifactId>jdtaus-banking-ri-textschluesselverzeichnis</artifactId>
        <version>RELEASE</version>
      </dependency>
      <dependency>
        <groupId>org.jdtaus.banking.dtaus</groupId>
        <artifactId>jdtaus-banking-ri-dtaus</artifactId>
        <version>RELEASE</version>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <repositories>
    <repository>
      <id>java.net</id>
      <url>http://download.java.net/maven/1</url>
      <layout>legacy</layout>
    </repository>
  </repositories>
  <pluginRepositories>
    <pluginRepository>
      <id>java.net</id>
      <url>http://download.java.net/maven/1</url>
      <layout>legacy</layout>
    </pluginRepository>
  </pluginRepositories>
  <distributionManagement>
    <repository>
      <id>jdtaus-releases</id>
      <name>jDTAUS Release Repository</name>
      <url>scp://web.rent-a-mailserver.de/var/httpd/D0001/maven2-repository.jdtaus.org/releases</url>
    </repository>
    <snapshotRepository>
      <id>jdtaus-snapshots</id>
      <name>jDTAUS Development Repository</name>
      <url>scp://web.rent-a-mailserver.de/var/httpd/D0001/maven2-repository.jdtaus.org/snapshots</url>
    </snapshotRepository>
    <site>
      <id>jdtaus-website</id>
      <url>scp://web.rent-a-mailserver.de/var/httpd/D0001/sites.jdtaus.org/jdtaus-commons/1.0.x</url>
    </site>
  </distributionManagement>
</project>
