<?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>
	<groupId>org.osgeo</groupId>
	<artifactId>proj4j</artifactId>
	<version>0.1.0-SNAPSHOT</version>

	<name>Proj4J</name>
	<description>a Java library to transform point coordinates from one geographic coordinate system to another, including datum transformations.</description>
	<url>http://trac.osgeo.org/proj4j/</url>

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

	<scm>
		<connection>scm:svn:http://svn.osgeo.org/metacrs/proj4j</connection>
		<developerConnection>scm:svn:http://svn.osgeo.org/metacrs/proj4j</developerConnection>
		<url>http://trac.osgeo.org/proj4j/browser</url>
	</scm>

	<issueManagement>
		<system>Trac</system>
		<url>http://trac.osgeo.org/proj4j</url>
	</issueManagement>

	<distributionManagement>
		<repository>
			<id>gvsig-repository</id>
			<name>gvSIG maven repository</name>
			<url>dav:https://devel.gvsig.org/m2repo/j2se</url>
			<uniqueVersion>false</uniqueVersion>
		</repository>
		<snapshotRepository>
			<id>gvsig-repository</id>
			<name>gvSIG maven repository</name>
			<url>dav:https://devel.gvsig.org/m2repo/j2se</url>
			<uniqueVersion>false</uniqueVersion>
		</snapshotRepository>
	</distributionManagement>

	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>3.8.1</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<configuration>
					<excludes>
						<exclude>**/*Test*</exclude>
					</excludes>
				</configuration>
			</plugin>
		</plugins>
	</build>

</project>
