<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.labathome</groupId>
		<artifactId>de-labathome-parent</artifactId>
		<version>2.0.0</version>
	</parent>

	<artifactId>BinaryTimeseries</artifactId>
	<version>2.0.0</version>
	<packaging>jar</packaging>

	<name>BinaryTimeseries</name>
	<description>A binary timeseries storage format, where the time axis is given via an expression.</description>

	<url>${jonathanschilling.git.url}${project.name}</url>
	<scm>
		<connection>${jonathanschilling.git.root}${project.name}.git</connection>
		<developerConnection>${jonathanschilling.git.root}${project.name}.git</developerConnection>
		<url>${jonathanschilling.git.url}${project.name}/tree/master</url>
	</scm>
	<issueManagement>
		<url>${jonathanschilling.git.url}${project.name}/issues</url>
		<system>GitLab Issues</system>
	</issueManagement>
	
	<build>
		<resources>
			<resource>
				<!-- Include the LaTeX documentation as a resource: doc/BinaryTimeseries.{tex,pdf} -->
				<directory>${project.basedir}/doc</directory>
				<includes>
					<include>BinaryTimeseries.tex</include>
					<include>BinaryTimeseries.pdf</include>
				</includes>
			</resource>
		</resources>
	</build>
</project>