<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>br.jus.tst</groupId>
		<artifactId>test-unit-parent</artifactId>
		<version>2.0.0</version>
	</parent>

	<artifactId>test-unit-cdi</artifactId>
	<name>TEST Unit - CDI</name>
	<description>Módulo do projeto que permite rodar testes que necessitem do CDI.</description>

	<properties>
		<weld.version>3.1.0.Final</weld.version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>br.jus.tst</groupId>
			<artifactId>test-unit-core</artifactId>
		</dependency>

		<dependency>
			<groupId>org.jglue.cdi-unit</groupId>
			<artifactId>cdi-unit</artifactId>
			<version>4.1.0</version>
			<scope>compile</scope>
			<exclusions>
				<exclusion>
					<groupId>org.reflections</groupId>
					<artifactId>reflections</artifactId>
				</exclusion>
			</exclusions>
		</dependency>

		<dependency>
			<groupId>org.jboss.weld.se</groupId>
			<artifactId>weld-se-core</artifactId>
			<version>${weld.version}</version>
			<scope>provided</scope>
		</dependency>

		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-core</artifactId>
			<version>1.10.19</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
</project>