<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>

	<artifactId>butor-auth-dao</artifactId>
	<packaging>jar</packaging>

	<parent>
		<groupId>com.butor</groupId>
		<artifactId>butor-fw-service-parent</artifactId>
		<version>1.0.21</version>
	</parent>

	<name>Butor Framework Service - Authentication DAO Module</name>
	<description>This project is an authentication module (DAO).</description>
	<url>http://www.butor.com</url>

	<profiles>
		<profile>
			<id>integration-test</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-surefire-plugin</artifactId>
						<version>2.18.1</version>
					</plugin>
				</plugins>

			</build>
		</profile>
		<profile>
			<id>unit-test</id>
			<activation>
				<activeByDefault>true</activeByDefault>
			</activation>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-surefire-plugin</artifactId>
						<version>2.18.1</version>
						<configuration>
						<excludes>
            				<exclude>**/integration/**</exclude>
          				</excludes>
						</configuration>
					</plugin>
					
				</plugins>
			</build>
		</profile>

	</profiles>

	<dependencies>
		<dependency>
			<groupId>com.butor</groupId>
			<artifactId>butor-auth-common</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>com.butor</groupId>
			<artifactId>butor-dao</artifactId>
			<version>${butor.version}</version>
		</dependency>
		<dependency>
			<groupId>com.butor</groupId>
			<artifactId>butor-utils</artifactId>
			<version>${butor.version}</version>
		</dependency>
		<dependency>
			<groupId>com.butor</groupId>
			<artifactId>butor-spring</artifactId>
			<version>${butor.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>com.butor</groupId>
			<artifactId>butor-log4j</artifactId>
			<version>${butor.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>com.butor</groupId>
			<artifactId>butor-test</artifactId>
			<version>${butor.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>com.butor</groupId>
			<artifactId>butor-attrset-dao</artifactId>
			<version>${project.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
			<version>5.1.21</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
</project>
