<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>
	<parent>
		<groupId>de.taimos</groupId>
		<artifactId>oss-parent</artifactId>
		<version>2</version>
	</parent>
	<artifactId>restutils</artifactId>
	<version>1.6</version>
	<name>Taimos RESTUtils</name>
	<description>Utility classes for JAX-RS</description>
	<packaging>jar</packaging>
	<url>https://www.github.com/taimos/RESTUtils</url>
	<dependencies>
		<dependency>
			<groupId>javax.ws.rs</groupId>
			<artifactId>javax.ws.rs-api</artifactId>
			<version>2.0</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>1.7.7</version>
		</dependency>

		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-simple</artifactId>
			<version>1.7.7</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.apache.cxf</groupId>
			<artifactId>cxf-rt-frontend-jaxrs</artifactId>
			<version>3.0.1</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<scm>
		<url>git://github.com/taimos/RESTUtils.git</url>
		<connection>scm:git:git://github.com/taimos/RESTUtils.git</connection>
		<developerConnection>scm:git:git@github.com:taimos/RESTUtils.git</developerConnection>
		<tag>v1.6</tag>
	</scm>
	<issueManagement>
		<system>github</system>
		<url>https://github.com/taimos/RESTUtils/issues</url>
	</issueManagement>
	<inceptionYear>2011</inceptionYear>
</project>