<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<properties>
		<revision>1.0.0</revision>
	</properties>

	<parent>
		<groupId>cc.renken</groupId>
		<artifactId>parent</artifactId>
		<version>1.2.0</version>
	</parent>

	<artifactId>keylock</artifactId>
	<version>${revision}</version>

	<name>cc.renken:keylock</name>
	<description>A simple key based locking library.</description>
	<url>https://gitlab.com/funsheep/keylock</url>

	<licenses>
		<license>
			<name>Mozilla Public License Version 2.0</name>
			<url>https://www.mozilla.org/media/MPL/2.0/index.txt</url>
		</license>
	</licenses>

	<issueManagement>
		<url>https://gitlab.com/funsheep/keylock/issues</url>
		<system>Gitlab</system>
	</issueManagement>

	<scm>
		<connection>scm:git:git://gitlab.com/funsheep/keylock.git</connection>
		<developerConnection>scm:git:https://gitlab.com/funsheep/keylock.git</developerConnection>
		<url>https://gitlab.com/funsheep/keylock/tree/develop</url>
	</scm>

	<developers>
		<developer>
			<name>Hendrik Renken</name>
			<email>hendrik@renken.cc</email>
			<organization>cc.renken</organization>
			<organizationUrl>https://gitlab.com/funsheep/</organizationUrl>
		</developer>
	</developers>

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

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>com.github.koraktor</groupId>
				<artifactId>mavanagaiata</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
			</plugin>
		</plugins>
	</build>

</project>