<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.common</groupId>
	<artifactId>common-sync</artifactId>
	<version>1.0.0</version>
	<name>Common Synchronization</name>
	<description>Contains utility classes used for synchronization.</description>
	<url>http://www.tomasteubner.com/maven/site/${project.artifactId}/${project.version}</url>
	<inceptionYear>2014</inceptionYear>

	<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>

	<organization>
		<name>Tomas Teubner</name>
		<url>http://www.tomas-teubner.de</url>
	</organization>

	<licenses>
		<license>
			<name>tt Software License</name>
			<url>/LICENSE.txt</url>
		</license>
	</licenses>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<scm>
	    <developerConnection>scm:git:ssh://git@ssh.tomasteubner.com/java/lib/common-sync.git</developerConnection>
	    <connection>scm:git:ssh://git@ssh.tomasteubner.com/java/lib/common-sync.git</connection>
	    <url>https://www.tomasteubner.com/git/?p=java/lib/common-sync.git;a=tree</url>
	  	<tag>common-sync-1.0.0</tag>
  	</scm>
	
	<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://${settings.localReposiory}</url>
	    </snapshotRepository>
	    <site>
	        <id>tomas-ssh</id>
	        <name>Maven Site</name>
	        <url>scpexe://ssh.tomasteubner.com/usr/export/srv/www/htdocs/maven/site/${project.artifactId}/${project.version}</url>
	    </site>
	</distributionManagement>

	<build>
	    <pluginManagement>
	        <plugins>
	            <plugin>
	                <groupId>org.apache.maven.plugins</groupId>
	                <artifactId>maven-changelog-plugin</artifactId>
	                <dependencies>
	                    <dependency>
	                        <groupId>org.apache.maven.scm</groupId>
	                        <artifactId>maven-scm-provider-gitexe</artifactId>
	                        <version>1.2</version>
	                    </dependency>
	                </dependencies>
	            </plugin>
	        </plugins>
	    </pluginManagement>
	    <plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.2</version>
				<configuration>
					<source>1.7</source>
					<target>1.7</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.4</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<phase>verify</phase>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
			    <artifactId>maven-site-plugin</artifactId>
			    <version>3.4</version>
			    <configuration>
			        <locales>en</locales>
			    </configuration>
			</plugin>
		</plugins>
		<extensions>
			<extension>
				<groupId>org.apache.maven.wagon</groupId>
				<artifactId>wagon-ssh-external</artifactId>
				<version>2.2</version>
			</extension>
			<extension>
				<groupId>org.apache.maven.wagon</groupId>
				<artifactId>wagon-scm</artifactId>
				<version>2.2</version>
			</extension>
			<extension>
				<groupId>org.apache.maven.scm</groupId>
				<artifactId>maven-scm-manager-plexus</artifactId>
				<version>1.6</version>
			</extension>
			<extension>
				<groupId>org.apache.maven.scm</groupId>
				<artifactId>maven-scm-provider-gitexe</artifactId>
				<version>1.6</version>
			</extension>
		</extensions>
	</build>
	
	<reporting>
	    <plugins>
	        <plugin>
	            <groupId>org.apache.maven.plugins</groupId>
	            <artifactId>maven-javadoc-plugin</artifactId>
	            <version>2.10.1</version>
	            <configuration>
	                <header>common-sync</header>
	                <source>1.7</source>
	                <links>
	                    <link>https://docs.oracle.com/javase/7/docs/api/</link>
	                    <link>http://junit.org/junit4/javadoc/latest/</link>
	                </links>
	            </configuration>
	        </plugin>
	        <plugin>
	            <groupId>org.apache.maven.plugins</groupId>
	            <artifactId>maven-changelog-plugin</artifactId>
	        </plugin>
	    </plugins>
	</reporting>
	
	<dependencies>
	    <dependency>
			<groupId>com.tomasteubner.common</groupId>
			<artifactId>common-logging</artifactId>
			<version>2.0.2</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	
</project>