<?xml version="1.0"?>
<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.axiomalaska</groupId>
	<artifactId>polyline-encoder</artifactId>
	<version>0.1-SNAPSHOT</version>
	<packaging>jar</packaging>

	<name>polyline-encoder</name>

	<properties>
	    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	    <geotools.version>2.7-M3</geotools.version>
	</properties>

	<distributionManagement>
	    <repository>
	        <id>axiom_public_releases</id>
	        <name>Axiom Releases</name>
	        <uniqueVersion>false</uniqueVersion>
	        <url>http://nexus.axiomalaska.com/nexus/content/repositories/public-releases</url>
	    </repository>
	    <snapshotRepository>
	        <id>axiom_public_snapshots</id>
	        <name>Axiom Snapshots</name>
	        <uniqueVersion>false</uniqueVersion>
	        <url>http://nexus.axiomalaska.com/nexus/content/repositories/public-snapshots</url>
	    </snapshotRepository>
	</distributionManagement>
	
	<build>
	    <plugins>
	        <plugin>
	            <artifactId>maven-compiler-plugin</artifactId>
	            <version>2.1</version>
	            <configuration>
	                <target>1.5</target>
	                <source>1.5</source>
	            </configuration>
	        </plugin>
		    <plugin>
		        <groupId>org.apache.maven.plugins</groupId>
		        <artifactId>maven-source-plugin</artifactId>
		        <version>2.1.2</version>
		        <executions>
		            <execution>
		                <goals>
		                    <goal>jar</goal>
		                    <goal>test-jar</goal>
		                </goals>
		            </execution>
		        </executions>
		    </plugin>
		    <plugin>
		        <groupId>org.apache.maven.plugins</groupId>
		        <artifactId>maven-jar-plugin</artifactId>
		        <version>2.3.1</version>
		        <executions>
		            <execution>
		                <goals>
		                    <goal>test-jar</goal>
		                </goals>
		            </execution>
		        </executions>
		    </plugin>	        
	    </plugins>
	</build>

	<dependencies>
	    <dependency>
	        <groupId>com.vividsolutions</groupId>
	        <artifactId>jts</artifactId>
	        <version>1.11</version>
	    </dependency>
	    <dependency>
	        <groupId>org.geotools</groupId>
	        <artifactId>gt-grid</artifactId>
	        <version>${geotools.version}</version>
	    </dependency>
	    <dependency>
	        <groupId>org.geotools</groupId>
	        <artifactId>gt-epsg-hsql</artifactId>
	        <version>${geotools.version}</version>
	    </dependency>
	    <dependency>
	        <groupId>junit</groupId>
	        <artifactId>junit</artifactId>
	        <version>3.8.1</version>
	        <scope>test</scope>
	    </dependency>
	</dependencies>
</project>