<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>com.tomasteubner.lib</groupId>
  <artifactId>james-tt</artifactId>
  <version>1.0.15</version>
  <packaging>jar</packaging>

  <name>james-tt</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.apache.james</groupId>
      <artifactId>apache-mailet-api</artifactId>
      <version>3.0.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.james</groupId>
      <artifactId>apache-mailet-base</artifactId>
      <version>3.0.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.james</groupId>
      <artifactId>apache-mailet-standard</artifactId>
      <version>3.0.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.james</groupId>
      <artifactId>james-server-core</artifactId>
      <version>3.0.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.james</groupId>
      <artifactId>james-server-mailets</artifactId>
      <version>3.0.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <reporting>
    <plugins>
	  <plugin>
	    <groupId>org.apache.maven.plugins</groupId>
		<artifactId>maven-project-info-reports-plugin</artifactId>
		<version>2.9</version>
		<reportSets>
		  <reportSet>
			<configuration>
			  <skip>true</skip>
			</configuration>
		  </reportSet>
		</reportSets>
	  </plugin>
	</plugins>
  </reporting>
  <scm>
  	<connection>scm:git:ssh://git@ssh.tomasteubner.com/java/lib/james-tt.git</connection>
    <tag>james-tt-1.0.15</tag>
  </scm>
  <issueManagement>
    <system>Bugzilla</system>
    <url>https://www.tomasteubner.com/bugzilla</url>
  </issueManagement>
  <distributionManagement>
    <repository>
      <id>tomas-ssh</id>
      <name>Repository Name</name>
      <url>scpexe://ssh.tomasteubner.com/usr/export/srv/www/htdocs/maven/repository</url>
    </repository>
    <snapshotRepository>
      <id>snapshot-repo</id>
      <url>file://C:/data/home/data/maven3/repository</url>
    </snapshotRepository>
    <site>
      <id>tomas-ssh</id>
      <name>Maven Site</name>
      <url>scpexe://ssh.tomasteubner.com/usr/export/srv/www/htdocs/maven/site/tools/${project.artifactId}/${project.version}</url>
    </site>
  </distributionManagement>
  <build>
    <extensions>
	  <extension>
	    <groupId>org.codehaus.mojo</groupId>
		<artifactId>wagon-maven-plugin</artifactId>
		<version>1.0</version>
	  </extension>
	  <extension>
	    <groupId>org.apache.maven.wagon</groupId>
	    <artifactId>wagon-ssh-external</artifactId>
	    <version>3.0.0</version>
	  </extension>
	</extensions>
	<plugins>
	  <plugin>
		<groupId>org.apache.maven.plugins</groupId>
		<artifactId>maven-site-plugin</artifactId>
		<version>3.6</version>
		<configuration>
		  <skip>true</skip>
		  <skipDeploy>true</skipDeploy>
		</configuration>
	  </plugin>
	  <plugin>
	    <groupId>org.apache.maven.plugins</groupId>
		<artifactId>maven-release-plugin</artifactId>
		<version>2.5.3</version>
		<executions>
		  <execution>
		    <id>default</id>
			<goals>
			  <goal>perform</goal>
			</goals>
			<configuration>
			  <pomFileName>james-tt/pom.xml</pomFileName>
			</configuration>
		  </execution>
		</executions>
	  </plugin>
	  <plugin>
	    <artifactId>maven-deploy-plugin</artifactId>
		<version>2.8.2</version>
	  </plugin>
	</plugins>
  </build>
</project>
