2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-10 10:35:39 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-10-31 21:43:47 -04:00
|
|
|
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>java-cassandra</artifactId>
|
|
|
|
<name>java-cassandra</name>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2020-01-26 14:10:23 -05:00
|
|
|
<artifactId>persistence-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Cassandra -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.datastax.cassandra</groupId>
|
|
|
|
<artifactId>cassandra-driver-core</artifactId>
|
|
|
|
<version>${cassandra-driver-core.version}</version>
|
|
|
|
<optional>true</optional>
|
2020-04-09 18:45:39 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.cassandraunit/cassandra-unit -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.cassandraunit</groupId>
|
|
|
|
<artifactId>cassandra-unit</artifactId>
|
|
|
|
<version>${cassandra-unit.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- DataStax Cassandra -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.datastax.oss</groupId>
|
|
|
|
<artifactId>java-driver-core</artifactId>
|
|
|
|
<version>${datastax-cassandra.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.datastax.oss</groupId>
|
|
|
|
<artifactId>java-driver-query-builder</artifactId>
|
|
|
|
<version>${datastax-cassandra.version}</version>
|
|
|
|
</dependency>
|
2022-01-20 08:40:00 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-transport</artifactId>
|
|
|
|
<version>${netty-transport-version}</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependencies>
|
|
|
|
|
2022-03-02 07:26:29 -05:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>integration-lite-first</id>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<forkCount>1</forkCount>
|
|
|
|
<reuseForks>true</reuseForks>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<properties>
|
|
|
|
<!-- Cassandra -->
|
|
|
|
<cassandra-driver-core.version>3.1.2</cassandra-driver-core.version>
|
|
|
|
<cassandra-unit.version>3.1.1.0</cassandra-unit.version>
|
|
|
|
<datastax-cassandra.version>4.1.0</datastax-cassandra.version>
|
2022-01-20 08:40:00 -05:00
|
|
|
<netty-transport-version>4.1.71.Final</netty-transport-version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
|
|
|
|
2022-03-13 05:18:44 -04:00
|
|
|
</project>
|