<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.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>

	<groupId>net.dataforte.cassandra</groupId>
	<version>0.7.1</version>
	<artifactId>cassandra-connection-pool</artifactId>
	<packaging>jar</packaging>

	<name>Cassandra Connection Pool</name>
	<description>Cassandra Connection Pool: a flexible, robust connection pool for Apache Cassandra</description>
	<url>http://www.dataforte.net/software/${project.artifactId}</url>

	<properties>
		<cassandra.version>0.7.4</cassandra.version>
		<slf4j.version>1.6.1</slf4j.version>
		<junit.version>4.8.2</junit.version>
	</properties>


	<developers>
		<developer>
			<id>tristantarrant</id>
			<name>Tristan Tarrant</name>
			<email>tristan.tarrant@dataforte.net</email>
			<organization>Dataforte</organization>
			<organizationUrl>http://www.dataforte.net</organizationUrl>
		</developer>
	</developers>

	<dependencies>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>${slf4j.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.cassandra</groupId>
			<artifactId>cassandra-all</artifactId>
			<version>${cassandra.version}</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>${junit.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>net.java.dev.jna</groupId>
			<artifactId>jna</artifactId>
			<version>3.2.7</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>${slf4j.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.16</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<scm>
		<connection>scm:git:http://github.com/tristantarrant/cassandra-connection-pool.git</connection>
		<developerConnection>scm:git:ssh://git@github.com/tristantarrant/cassandra-connection-pool.git</developerConnection>
		<url>http://github.com/tristantarrant/cassandra-connection-pool</url>
	</scm>

	<build>
		<testResources>
			<testResource>
				<directory>src/test/resources</directory>
				<filtering>true</filtering>
			</testResource>
		</testResources>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.4.3</version>
				<configuration>
					<forkMode>pertest</forkMode>
					<parallel>false</parallel>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>
