<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>

	<groupId>de.itvsh.ozg</groupId>
	<artifactId>goofy</artifactId>
	<version>1.1.0-SNAPSHOT</version>
	<name>Goofy Parent</name>
	<packaging>pom</packaging>

	<parent>
		<groupId>de.itvsh.kop.common</groupId>
		<artifactId>kop-common-parent</artifactId>
		<version>1.3.0-SNAPSHOT</version>
	</parent>

	<modules>
		<module>goofy-client</module>
		<module>goofy-server</module>
	</modules>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

		<pluto.version>1.1.0-SNAPSHOT</pluto.version>
		<jsoup.version>1.15.1</jsoup.version>
		<kop-common-pdf.version>1.3.0-SNAPSHOT</kop-common-pdf.version>
	</properties>

	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>de.itvsh.ozg.pluto</groupId>
				<artifactId>pluto-interface</artifactId>
				<version>${pluto.version}</version>
			</dependency>
			<dependency>
				<groupId>de.itvsh.ozg.pluto</groupId>
				<artifactId>pluto-utils</artifactId>
				<version>${pluto.version}</version>
			</dependency>
			<dependency>
				<groupId>de.itvsh.kop.common</groupId>
				<artifactId>kop-common-pdf</artifactId>
				<version>${kop-common-pdf.version}</version>
			</dependency>
			<dependency>
				<groupId>org.jsoup</groupId>
				<artifactId>jsoup</artifactId>
				<version>${jsoup.version}</version>
			</dependency>
		</dependencies>
	</dependencyManagement>

	<distributionManagement>
		<repository>
			<id>ozg-nexus</id>
			<name>ozg-releases</name>
			<url>https://nexus.ozg-sh.de/repository/ozg-releases/</url>
		</repository>
		<snapshotRepository>
			<id>ozg-snapshots-nexus</id>
			<name>ozg-snapshots</name>
			<url>https://nexus.ozg-sh.de/repository/ozg-snapshots/</url>
		</snapshotRepository>
	</distributionManagement>
</project>