<?xml version="1.0" encoding="UTF-8"?>
<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>
	<artifactId>common</artifactId>
	<groupId>info.textgrid.middleware</groupId>
	<name>Common tools and packages</name>
	<version>1.0-SNAPSHOT</version>
	<packaging>pom</packaging>
	<properties>
		<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
		<sonar.host.url>https://ci.bibforge.org/sonar</sonar.host.url>
		<felix.version>2.3.4</felix.version>
	</properties>
	<url>https://develop.sub.uni-goettingen.de/repos/textgrid/trunk/middleware/common/</url>
	<scm>
		<connection>scm:svn:https://develop.sub.uni-goettingen.de/repos/textgrid/trunk/middleware/common/</connection>
		<developerConnection>scm:svn:https://develop.sub.uni-goettingen.de/repos/textgrid/trunk/middleware/common/</developerConnection>
		<url>https://develop.sub.uni-goettingen.de/repos/textgrid/trunk/middleware/common/</url>
	</scm>
	<issueManagement>
		<system>jira</system>
		<url>https://develop.sub.uni-goettingen.de/jira/browse/textgrid</url>
	</issueManagement>
	<organization>
		<name>TextGrid</name>
		<url>http://www.textgrid.de</url>
	</organization>
	<modules>
		<module>metadata-core-jaxb</module>
		<module>httpclients</module>
   		<module>confclient</module>
		<module>existupload</module>
  </modules>
	<repositories>
		<repository>
			<id>archiva.internal.http</id>
			<name>Archiva Managed Internal Repository</name>
			<url>http://repository.bibforge.org/archiva/repository/internal</url>
			<releases>
				<enabled>true</enabled>
			</releases>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</repository>
		<repository>
			<id>archiva.snapshots.http</id>
			<name>Archiva Managed Snapshot Repository</name>
			<url>http://repository.bibforge.org/archiva/repository/snapshots</url>
			<releases>
				<enabled>true</enabled>
			</releases>
			<snapshots>
				<enabled>true</enabled>
			</snapshots>
		</repository>
	</repositories>

	<distributionManagement>
		<snapshotRepository>
			<id>snapshots</id>
			<url>http://dev.digital-humanities.de/archiva/repository/snapshots/</url>
		</snapshotRepository>
		<repository>
			<id>internal</id>
			<url>http://dev.digital-humanities.de/archiva/repository/internal/</url>
		</repository>
	</distributionManagement>

	<build>
		<defaultGoal>package</defaultGoal>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.0.2</version>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
					<fork>true</fork>
					<showDeprecation>true</showDeprecation>
					<showWarnings>true</showWarnings>
					<!--encoding>UTF-8</encoding -->
					<encoding>ISO-8859-1</encoding>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>