<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.com.objectos.way</groupId>
		<artifactId>parent</artifactId>
		<version>0.4.1</version>
	</parent>

	<artifactId>sqlunit</artifactId>

	<name>objectos :: way :: sqlunit</name>
	<description>Database testing. Simple.</description>
	<url>https://github.com/objectos/way/sqlunit</url>

	<licenses>
		<license>
			<name>The Apache Software License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<developers>
		<developer>
			<id>moe</id>
			<name>Marcio Endo</name>
			<email>marcio.endo@objectos.com.br</email>
		</developer>
	</developers>

	<dependencies>
		<dependency>
			<groupId>br.com.objectos.way</groupId>
			<artifactId>assertion</artifactId>
		</dependency>
		<dependency>
			<groupId>br.com.objectos.way</groupId>
			<artifactId>sql-legacy-legacy</artifactId>
		</dependency>
		<dependency>
			<groupId>br.com.objectos.way</groupId>
			<artifactId>ui-legacy</artifactId>
			<exclusions>
				<exclusion>
					<groupId>br.com.objectos</groupId>
					<artifactId>sql-legacy</artifactId>
				</exclusion>
				<exclusion>
					<groupId>net.java.dev</groupId>
					<artifactId>pdf-renderer</artifactId>
				</exclusion>
			</exclusions>
		</dependency>

		<dependency>
			<groupId>com.google.inject</groupId>
			<artifactId>guice</artifactId>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
		</dependency>
	</dependencies>

</project>