<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.testing</groupId>
	<artifactId>vd-testing-file</artifactId>
	<version>0.1.0</version>

	<name>vd-testing-file</name>
	<description>testing framework for files</description>
    <url>https://github.com/voomdoon/vd-testing-file</url>

	<scm>
		<url>https://github.com/voomdoon/vd-testing-file</url>
		<connection>scm:git:https://github.com/voomdoon/vd-testing-file.git</connection>
		<developerConnection>scm:git:git@github.com:voomdoon/vd-testing-file.git</developerConnection>
		<tag>0.1.0</tag>
	</scm>

	<properties>
		<skipTestJar>false</skipTestJar>
	</properties>
	
	<dependencies>
		<!-- + + + + + + + + + + compile dependencies + + + + + + + + + + -->
		<!-- + + + + + external compile dependencies + + + + + -->
		<dependency>
			<groupId>org.junit.jupiter</groupId>
			<artifactId>junit-jupiter-api</artifactId>
			<version>6.0.1</version>
		</dependency>
		<!-- - - - - - external compile dependencies - - - - - -->
		<!-- - - - - - - - - - - compile 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.mockito</groupId>
			<artifactId>mockito-core</artifactId>
			<version>5.21.0</version>
			<scope>test</scope>
		</dependency>
		<!-- - - - - - external test dependencies - - - - - -->
		<!-- - - - - - - - - - - test dependencies - - - - - - - - - - -->
	</dependencies>
</project>
