<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>
  <groupId>de.tomas-teubner.bacula</groupId>
  <artifactId>bacula-sizes</artifactId>
  <version>1.0.2</version>
  <name>bacula-sizes</name>
  <description>Compute and display sizes of directories backed up by bacula.</description>

  <inceptionYear>2013</inceptionYear>
  <licenses>
  	<license>
  	  <name>tt Software License</name>
  	  <url>/LICENSE.txt</url>			
  	</license>
  </licenses>
  <scm>
    <developerConnection>scm:svn:https://svn.tsteub.selfhost.me/repos/tomas/java/tools/bacula-sizes/tags/bacula-sizes-1.0.2</developerConnection>
    <connection>scm:svn:https://svn.tsteub.selfhost.me/repos/tomas/java/tools/bacula-sizes/tags/bacula-sizes-1.0.2</connection>
    <url>https://tsteub.selfhost.me/viewcvs/java/tools/bacula-sizes/tags/bacula-sizes-1.0.2?root=SVN+tomas</url>
  </scm>
  <organization>
    <name>Tomas Teubner</name>
    <url>http://www.tomas-teubner.de</url>
  </organization>
  <distributionManagement>
    <!-- use the following if you're not using a snapshot version. -->
    <repository>
      <id>tomas-ssh</id>
      <name>Repository Name</name>
      <url>scp://ssh.tsteub.selfhost.me/usr/export/srv/www/htdocs/maven/repository</url>
    </repository>
    <!-- use the following if you ARE using a snapshot version. -->
    <snapshotRepository>
      <id>snapshot-repo</id>
      <url>file://${settings.localRepository}</url>
    </snapshotRepository>
    <!-- 
    <site>
      <id>tomas-ssh</id>
      <name>Maven Site</name>
      <url>scp://ssh.tsteub.selfhost.ms/usr/export/srv/www/htdocs/maven/site/${pom.artifactId}/${pom.version}</url>
    </site>
    -->
  </distributionManagement>
  
  <build>
    <extensions>
        <extension>
            <groupId>org.apache.maven.wagon</groupId>
            <artifactId>wagon-ssh</artifactId>
            <version>2.4</version>
        </extension>
    </extensions>
    <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>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.4</version>
        <configuration>
          <archive>
            <manifest>
              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
              <addClasspath>true</addClasspath>
              <classpathLayoutType>custom</classpathLayoutType>
              <customClasspathLayout>$${artifact.artifactId}.$${artifact.extension}</customClasspathLayout>
              <mainClass>de.tomasteubner.bacula.BaculaSizesMain</mainClass>
            </manifest>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>
  
  <dependencies>
  	<dependency>
  		<groupId>mysql</groupId>
  		<artifactId>mysql-connector-java</artifactId>
  		<version>5.1.18</version>
  		<scope>runtime</scope>
  	</dependency>
  </dependencies>
  <developers>
    <developer>
      <name>Tomas Teubner</name>
      <id>tomas</id>
      <email>tomas@tomas-teubner.de</email>
      <url>http://www.tomas-teubner.de</url>
      <roles>
        <role>Developer</role>
      </roles>
    </developer>
  </developers>
</project>