<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>de.jplanets</groupId>
    <artifactId>jplanets-java-parent</artifactId>
    <version>4</version>
  </parent>

  <groupId>de.jplanets.logging</groupId>
  <artifactId>jplanets-logging</artifactId>
  <version>2.2</version>

  <name>jPlanets Logging Framework (${version})</name>
  <description>Logging abstraction for the jPlanets projects</description>
  <url>${jplanets.project.url}/${jplanets.site.project.path}/</url>

  <properties>
    <!-- START values to be overwritten in sub-projects -->
    <jplanets.site.project.path>java/logging</jplanets.site.project.path>
    <jplanets.scm.artifact>jplanets-logging</jplanets.scm.artifact>
  </properties>

  <dependencies>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-gpg-plugin</artifactId>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <distributionManagement>
    <site>
      <id>${jplanets.distribution.site.id}</id>
      <name>jPlanets-Site</name>
      <url>${jplanets.distribution.site.url}/${jplanets.site.project.path}/</url>
    </site>
  </distributionManagement>

  <scm>
    <developerConnection>scm:${jplanets.scm.base}/${jplanets.scm.artifact}</developerConnection>
    <connection>scm:${jplanets.scm.base}/${jplanets.scm.artifact}</connection>
    <url>${jplanets.scm.url}</url>
    <tag>jplanets-logging-2.2</tag>
  </scm>

  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <developers>
    <developer>
      <name>Ulrich David</name>
      <email>alexxismachine@alexxismachine.de</email>
      <organization>Davids Programmier Studio</organization>
      <organizationUrl>http://www.daprost.de/</organizationUrl>
    </developer>
  </developers>

</project>