<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.4</version>
		<relativePath />
	</parent>

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

	<name>vd-log4j2-logging-connector</name>
	<description>Log4j 2 connector for vd-logging</description>
	<url>https://github.com/voomdoon/vd-log4j2-logging-connector</url>

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

	<properties>
		<skipTestJar>false</skipTestJar>

		<de.voomdoon.logging_vd-logging_version>0.2.0</de.voomdoon.logging_vd-logging_version>
		<log4j_version>2.26.0</log4j_version>
	</properties>

	<dependencies>
		<!-- + + + + + + + + + + compile dependencies + + + + + + + + + + -->
		<!-- + + + + + internal voomdoon compile dependencies + + + + + -->
		<dependency>
			<groupId>de.voomdoon.logging</groupId>
			<artifactId>vd-logging</artifactId>
			<version>${de.voomdoon.logging_vd-logging_version}</version>
		</dependency>
		<!-- - - - - - internal voomdoon compile dependencies - - - - - -->

		<!-- + + + + + external compile dependencies + + + + + -->
		<dependency>
			<groupId>org.apache.logging.log4j</groupId>
			<artifactId>log4j-api</artifactId>
			<version>${log4j_version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.logging.log4j</groupId>
			<artifactId>log4j-core</artifactId>
			<version>${log4j_version}</version>
		</dependency>
		<!-- - - - - - external compile dependencies - - - - - -->
		<!-- - - - - - - - - - - compile dependencies - - - - - - - - - - -->

		<!-- + + + + + + + + + + test dependencies + + + + + + + + + + -->
		<!-- + + + + + internal voomdoon test dependencies + + + + + -->
		<dependency>
			<groupId>de.voomdoon.logging</groupId>
			<artifactId>vd-logging</artifactId>
			<version>${de.voomdoon.logging_vd-logging_version}</version>
			<classifier>tests</classifier>
			<scope>test</scope>
		</dependency>
		<!-- - - - - - internal voomdoon test dependencies - - - - - -->

		<!-- + + + + + external test dependencies + + + + + -->
		<dependency>
			<groupId>org.assertj</groupId>
			<artifactId>assertj-core</artifactId>
			<version>3.27.7</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.junit.jupiter</groupId>
			<artifactId>junit-jupiter-engine</artifactId>
			<version>6.1.0</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-lang3</artifactId>
			<version>3.20.0</version>
			<scope>test</scope>
		</dependency>
		<!-- - - - - - external test dependencies - - - - - -->
		<!-- - - - - - - - - - - test dependencies - - - - - - - - - - -->
	</dependencies>
</project>
