<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/maven-v4_0_0.xsd">
	
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>ch.tatool</groupId>
		<artifactId>tatool-parent</artifactId>
		<version>1.2</version>
	</parent>
	
	<artifactId>tatool-test</artifactId>
	<packaging>jar</packaging>
	<name>Tatool Test Project</name>

    <dependencies>
		<!-- Tatool API -->
		<dependency>
			<groupId>ch.tatool</groupId>
			<artifactId>tatool-api</artifactId>
			<version>${project.version}</version>
		</dependency>

		<!-- Tatool Core -->
		<dependency>
			<groupId>ch.tatool</groupId>
			<artifactId>tatool-core</artifactId>
			<version>${project.version}</version>
		</dependency>
		
		<!-- Tatool App -->
		<dependency>
			<groupId>ch.tatool</groupId>
			<artifactId>tatool-app</artifactId>
			<version>${project.version}</version>
		</dependency>
		
		<!-- Unit testing -->
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-all</artifactId>
			<scope>test</scope>
		</dependency>
    </dependencies>
</project>



