<?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>
	<packaging>jar</packaging>

	<groupId>com.github.hypfvieh</groupId>
	<artifactId>libmatthew</artifactId>
	<version>0.8.2</version>

	<name>${project.artifactId}</name>

	<description>
		Some libraries from Matthew Johnson: http://www.matthew.ath.cx/projects/java/

		Modifications:
		- including precompiled native C libraries (libunix-java) for architectures: arm, amd64 and i386
		- UnixSocket/UnixServerSocket now implements closable (allows try-with-resources usage)
		- Cleaned up code style
		- Split test classes to test classpath
		- Introduced JUnit
		- Removed the whole CGI package, it should never ever been used these days
	</description>

	<properties>
		<maven.compiler.source>1.7</maven.compiler.source>
		<maven.compiler.target>1.7</maven.compiler.target>
	</properties>

	<dependencies>
		<dependency>
			<groupId>com.github.hypfvieh</groupId>
			<artifactId>java-utils</artifactId>
			<version>1.0.0</version>
		</dependency>

		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>1.7.21</version>
		</dependency>

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

	<scm>
		<connection>scm:git:https://github.com/hypfvieh/libmatthew.git</connection>
		<developerConnection>scm:git:https://github.com/hypfvieh/libmatthew.git</developerConnection>
		<url>https://github.com/hypfvieh/libmatthew.git</url>
	</scm>
	<url>https://github.com/hypfvieh/${project.artifactId}</url>

	<licenses>
		<license>
			<name>MIT License</name>
			<url>http://www.opensource.org/licenses/mit-license.php</url>
		</license>
	</licenses>

	<developers>
		<developer>
			<id>matthew</id>
			<name>Matthew Johnson</name>
			<email>src@matthew.ath.cx</email>
		</developer>
		<developer>
			<id>hypfvieh</id>
			<name>David M.</name>
			<email>hypfvieh@googlemail.com</email>
		</developer>
	</developers>
</project>
