| 
									
										
										
										
											2019-12-05 16:56:52 +02:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							| 
									
										
										
										
											2021-05-10 20:05:39 +05:30
										 |  |  | <project xmlns="http://maven.apache.org/POM/4.0.0" | 
					
						
							|  |  |  |     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 
					
						
							| 
									
										
										
										
											2019-10-31 20:43:47 -05: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-27 00:40:23 +05:30
										 |  |  |         <artifactId>persistence-modules</artifactId> | 
					
						
							|  |  |  |         <version>1.0.0-SNAPSHOT</version> | 
					
						
							| 
									
										
										
										
											2019-10-31 20:43:47 -05: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-10 03:15:39 +04:30
										 |  |  |             <exclusions> | 
					
						
							|  |  |  |                 <exclusion> | 
					
						
							|  |  |  |                     <groupId>com.google.guava</groupId> | 
					
						
							|  |  |  |                     <artifactId>guava</artifactId> | 
					
						
							|  |  |  |                 </exclusion> | 
					
						
							|  |  |  |             </exclusions> | 
					
						
							| 
									
										
										
										
											2019-10-31 20:43:47 -05: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 19:10:00 +05:30
										 |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>io.netty</groupId> | 
					
						
							|  |  |  |             <artifactId>netty-transport</artifactId> | 
					
						
							|  |  |  |             <version>${netty-transport-version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2019-10-31 20:43:47 -05:00
										 |  |  |     </dependencies> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-02 12:26:29 +00: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 20:43:47 -05: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 19:10:00 +05:30
										 |  |  |         <netty-transport-version>4.1.71.Final</netty-transport-version> | 
					
						
							| 
									
										
										
										
											2019-10-31 20:43:47 -05:00
										 |  |  |     </properties> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-13 14:48:44 +05:30
										 |  |  | </project> |