<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>org.cdisource</groupId>
		<artifactId>cdisource-parent</artifactId>
		<version>0.9</version>
		<relativePath>../../parent</relativePath>
	</parent>
	<groupId>org.cdisource.testing</groupId>
	<artifactId>cdisource-testing-junit</artifactId>
	<version>0.9</version>
	<name>CDISource JUnit Test Runner</name>
	<description>Project providing support for testing with CDI and Junit</description>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.8.2</version>
			<type>jar</type>
			<scope>provided</scope>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.cdisource.beancontainer</groupId>
			<artifactId>beancontainer-api</artifactId>
			<version>0.9</version>
			<type>jar</type>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>org.cdisource.beancontainer</groupId>
			<artifactId>beancontainer-weld-impl</artifactId>
			<version>0.9</version>
			<type>jar</type>
			<scope>test</scope>
		</dependency>
	</dependencies>
</project>
