<?xml version="1.0" encoding="UTF-8"?>
<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>
		<artifactId>TadukooParsingParent</artifactId>
		<groupId>com.github.tadukoo.parsing</groupId>
		<version>0.3.2-Alpha</version>
	</parent>
	<artifactId>TadukooJSON</artifactId>
	<dependencies>
		<!-- Tadukoo Parsing -->
		<dependency>
			<groupId>${project.groupId}</groupId>
			<artifactId>TadukooParsing</artifactId>
		</dependency>
		<!-- JUnit Stuff -->
		<dependency>
			<groupId>${junit.jupiter.groupID}</groupId>
			<artifactId>${junit.jupiter.artifactID}</artifactId>
		</dependency>
		<dependency>
			<groupId>${junit.platform.groupID}</groupId>
			<artifactId>${junit.platform.artifactID}</artifactId>
		</dependency>
		<!-- Tadukoo JUnit -->
		<dependency>
			<groupId>${tadukoo.junit.groupID}</groupId>
			<artifactId>${tadukoo.junit.junit.artifactID}</artifactId>
		</dependency>
	</dependencies>
	<build>
		<sourceDirectory>${directory.source}</sourceDirectory>
		<testSourceDirectory>${directory.test}</testSourceDirectory>
		<testResources>
			<testResource>
				<directory>${directory.test-resource}</directory>
			</testResource>
		</testResources>
	</build>
</project>