260 lines
7.1 KiB
XML
260 lines
7.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
<artifactId>spring-data-cassandra-parent</artifactId>
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Spring Data Cassandra</name>
|
|
<description>Cassandra support for Spring Data</description>
|
|
<url>http://www.springsource.org/spring-data/cassandra</url>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.data.build</groupId>
|
|
<artifactId>spring-data-parent</artifactId>
|
|
<version>1.2.0.RELEASE</version>
|
|
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<modules>
|
|
<module>spring-cassandra</module>
|
|
<module>spring-data-cassandra</module>
|
|
<module>spring-data-cassandra-distribution</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<project.type>multi</project.type>
|
|
<dist.id>spring-data-cassandra</dist.id>
|
|
<springdata.commons>1.6.2.RELEASE</springdata.commons>
|
|
<cassandra-unit.version>1.2.0.1</cassandra-unit.version>
|
|
<cassandra-driver-core.version>1.0.4-dse</cassandra-driver-core.version>
|
|
</properties>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>madams</id>
|
|
<name>Matthew T. Adams</name>
|
|
<email>matthew dot adams at scispike.com</email>
|
|
<organization>SciSpike Inc.</organization>
|
|
<organizationUrl>http://www.scispike.com</organizationUrl>
|
|
<roles>
|
|
<role>Project Lead</role>
|
|
<role>Developer</role>
|
|
</roles>
|
|
<timezone>-6</timezone>
|
|
</developer>
|
|
<developer>
|
|
<id>dwebb</id>
|
|
<name>David Webb</name>
|
|
<email>dwebb at prowaveconsulting.com</email>
|
|
<organization>Prowave Consulting Inc.</organization>
|
|
<organizationUrl>http://www.prowaveconsulting.com</organizationUrl>
|
|
<roles>
|
|
<role>Project Lead</role>
|
|
<role>Developer</role>
|
|
</roles>
|
|
<timezone>-5</timezone>
|
|
</developer>
|
|
<developer>
|
|
<id>ashvid</id>
|
|
<name>Alex Shvid</name>
|
|
<email>a at shvid.com</email>
|
|
<roles>
|
|
<role>Developer</role>
|
|
</roles>
|
|
<timezone>-8</timezone>
|
|
</developer>
|
|
</developers>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>spring-cassandra</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.datastax.cassandra</groupId>
|
|
<artifactId>cassandra-driver-core</artifactId>
|
|
<version>${cassandra-driver-core.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Spring -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
<version>${spring}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-tx</artifactId>
|
|
<version>${spring}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-beans</artifactId>
|
|
<version>${spring}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-core</artifactId>
|
|
<version>${spring}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-expression</artifactId>
|
|
<version>${spring}</version>
|
|
</dependency>
|
|
|
|
<!-- CDI -->
|
|
<dependency>
|
|
<groupId>javax.enterprise</groupId>
|
|
<artifactId>cdi-api</artifactId>
|
|
<version>${cdi}</version>
|
|
<scope>provided</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cglib</groupId>
|
|
<artifactId>cglib-nodep</artifactId>
|
|
<version>2.2.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.xerial.snappy</groupId>
|
|
<artifactId>snappy-java</artifactId>
|
|
<version>1.1.0.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
<version>1.9.13</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
<artifactId>jackson-core-asl</artifactId>
|
|
<version>1.9.13</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.cassandraunit</groupId>
|
|
<artifactId>cassandra-unit</artifactId>
|
|
<version>${cassandra-unit.version}</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>cassandra-all</artifactId>
|
|
<groupId>org.apache.cassandra</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.cassandraunit</groupId>
|
|
<artifactId>cassandra-unit-spring</artifactId>
|
|
<version>${cassandra-unit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.el</groupId>
|
|
<artifactId>el-api</artifactId>
|
|
<version>${cdi}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-validator</artifactId>
|
|
<version>4.2.0.Final</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>joda-time</groupId>
|
|
<artifactId>joda-time</artifactId>
|
|
<version>${jodatime}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>spring-lib-release</id>
|
|
<url>http://repo.springsource.org/libs-release-local</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>2.8</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<parallel>methods</parallel>
|
|
<threadCount>10</threadCount>
|
|
<useFile>false</useFile>
|
|
<includes>
|
|
<include>**/test/unit/**/*.java</include>
|
|
</includes>
|
|
<excludes>
|
|
<exclude>**/test/integration/**/*.java</exclude>
|
|
<exclude>**/test/performance/**/*.java</exclude>
|
|
</excludes>
|
|
<systemPropertyVariables>
|
|
<java.util.logging.config.file>src/test/resources/logging.properties</java.util.logging.config.file>
|
|
</systemPropertyVariables>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
<configuration>
|
|
<useFile>false</useFile>
|
|
<includes>
|
|
<include>**/test/integration/**/*.java</include>
|
|
</includes>
|
|
<excludes>
|
|
<exclude>**/test/unit/**/*.java</exclude>
|
|
<exclude>**/test/performance/**/*.java</exclude>
|
|
</excludes>
|
|
<systemPropertyVariables>
|
|
<java.util.logging.config.file>src/test/resources/logging.properties</java.util.logging.config.file>
|
|
</systemPropertyVariables>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>integration-test</goal>
|
|
<goal>verify</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|