<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>
	<artifactId>husky-common-ch</artifactId>
	<name>Husky Common CH</name>
	<description>Common and country specific stuff for Switzerland</description>

	<parent>
		<groupId>org.projecthusky.common</groupId>
		<artifactId>husky-common</artifactId>
		<version>3.2.1-OS4</version>
	</parent>

	<dependencies>
		<dependency>
			<groupId>org.projecthusky.common</groupId>
			<artifactId>husky-common-gen</artifactId>
			<version>3.2.1-OS4</version>
		</dependency>

		<!-- test stuff -->
		<dependency>
			<groupId>org.projecthusky.common</groupId>
			<artifactId>husky-common-gen</artifactId>
			<version>3.2.1-OS4</version>
			<type>test-jar</type>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.junit.jupiter</groupId>
			<artifactId>junit-jupiter-engine</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.junit.jupiter</groupId>
			<artifactId>junit-jupiter-api</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<executions>
					<execution>
						<goals>
							<goal>test-jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>
