<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>org.jboss.dna</groupId>
		<artifactId>dna</artifactId>
		<version>0.2</version>
		<relativePath>../..</relativePath>
	</parent>
	<!-- The groupId and version values are inherited from parent -->
	<artifactId>dna-sequencer-java</artifactId>
	<packaging>jar</packaging>
	<name>JBoss DNA Java Sequencer</name>
	<description>
		JBoss DNA Sequencer that processes java sources
	</description>
	<url>http://labs.jboss.org/dna</url>
	<!--
		Define the dependencies.  Note that all version and scopes default to those 
		defined in the dependencyManagement section of the parent pom.
	-->
	<dependencies>
		<!-- 
			Common
		-->
		<dependency>
			<groupId>org.jboss.dna</groupId>
			<artifactId>dna-common</artifactId>
		</dependency>
		<dependency>
			<groupId>org.jboss.dna</groupId>
			<artifactId>dna-graph</artifactId>
		</dependency>
		<dependency>
			<groupId>org.jboss.dna</groupId>
			<artifactId>dna-common</artifactId>
			<version>${pom.version}</version>
			<type>test-jar</type>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.jboss.dna</groupId>
			<artifactId>dna-graph</artifactId>
			<version>${pom.version}</version>
			<type>test-jar</type>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.jboss.dna</groupId>
			<artifactId>dna-integration-tests</artifactId>
			<version>0.2</version>
			<scope>test</scope>
		</dependency>
		<!-- 
			Testing (note the scope)
		-->
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
		</dependency>
		<dependency>
			<groupId>org.hamcrest</groupId>
			<artifactId>hamcrest-library</artifactId>
		</dependency>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-all</artifactId>
		</dependency>
		<!-- 
			Logging (require SLF4J API for compiling, but use Log4J and its SLF4J binding for testing) 
		-->
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
		</dependency>
		<!-- 
			Java Concurrency in Practice annotations
		-->
		<dependency>
			<groupId>net.jcip</groupId>
			<artifactId>jcip-annotations</artifactId>
		</dependency>
		<dependency>
			<groupId>org.eclipse.jdt</groupId>
			<artifactId>core</artifactId>
			<version>3.2.3.v_686_R32x</version>
		</dependency>
		<dependency>
			<groupId>org.eclipse.core</groupId>
			<artifactId>runtime</artifactId>
			<version>3.3.100-v20070530</version>
			<!-- Exclude this problem library -->
			<exclusions>
				<exclusion>
					<groupId>org.eclipse.equinox</groupId>
					<artifactId>app</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>org.eclipse.core</groupId>
			<artifactId>resources</artifactId>
			<version>3.3.0-v20070604</version>
		</dependency>
		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
			<version>1.4</version>
		</dependency>
		<dependency>
			<groupId>commons-lang</groupId>
			<artifactId>commons-lang</artifactId>
			<version>2.4</version>
		</dependency>
		<!-- 
			Apache Jackrabbit (JCR Implementation)
		-->
		<dependency>
			<groupId>org.apache.jackrabbit</groupId>
			<artifactId>jackrabbit-api</artifactId>
		</dependency>
		<dependency>
			<groupId>org.apache.jackrabbit</groupId>
			<artifactId>jackrabbit-core</artifactId>
		</dependency>
	</dependencies>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-report-plugin</artifactId>
			</plugin>
		</plugins>
	</reporting>
</project>