<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>sql-parent</artifactId>
		<version>0.4.1</version>
	</parent>

	<artifactId>sql-legacy</artifactId>
	<name>objectos :: way :: sql :: legacy</name>

	<properties>
		<jdbc.db>WAY_RELATIONAL</jdbc.db>
	</properties>

	<build>
		<plugins>
			<plugin>
				<groupId>br.com.objectos</groupId>
				<artifactId>db9-maven-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>com.googlecode.flyway</groupId>
				<artifactId>flyway-maven-plugin</artifactId>
				<executions>
					<execution>
						<id>schema</id>
						<phase>generate-test-resources</phase>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

	<dependencies>
		<dependency>
			<groupId>br.com.objectos.way</groupId>
			<artifactId>assertion</artifactId>
		</dependency>
		<dependency>
			<groupId>br.com.objectos.way</groupId>
			<artifactId>sql-legacy-core</artifactId>
		</dependency>

		<dependency>
			<groupId>com.google.inject</groupId>
			<artifactId>guice</artifactId>
		</dependency>
		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

</project>