<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.voomdoon</groupId>
		<artifactId>vd-parent</artifactId>
		<version>0.2.3</version>
		<relativePath />
	</parent>

	<groupId>de.voomdoon.logging</groupId>
	<artifactId>vd-logging</artifactId>
	<version>0.2.0</version>

	<name>vd-logging</name>
	<description>logging framework for all voomdoon modules</description>
    <url>https://github.com/voomdoon/vd-logging</url>

	<scm>
		<url>https://github.com/voomdoon/vd-logging</url>
		<connection>scm:git:https://github.com/voomdoon/vd-logging.git</connection>
		<developerConnection>scm:git:git@github.com:voomdoon/vd-logging.git</developerConnection>
		<tag>0.2.0</tag>
	</scm>

	<properties>
		<skipTestJar>false</skipTestJar>
		
		<junit.version>6.0.1</junit.version>
	</properties>

	<dependencies>
		<!-- + + + + + + + + + + test dependencies + + + + + + + + + + -->
		<!-- + + + + + external test dependencies + + + + + -->
		<dependency>
			<groupId>org.assertj</groupId>
			<artifactId>assertj-core</artifactId>
			<version>3.27.6</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.junit.jupiter</groupId>
			<artifactId>junit-jupiter-engine</artifactId>
			<version>${junit.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.junit.jupiter</groupId>
			<artifactId>junit-jupiter-params</artifactId>
			<version>${junit.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-core</artifactId>
			<version>5.21.0</version>
			<scope>test</scope>
		</dependency>
		<!-- - - - - - external test dependencies - - - - - -->
		<!-- - - - - - - - - - - test dependencies - - - - - - - - - - -->
	</dependencies>
</project>
