Exclude com.datastax.cassandra group

Rely on Cassandra driver as transitive dependency from `spring-data-cassandra`
This commit is contained in:
abilan
2023-06-22 17:32:28 -04:00
parent d37912f6a0
commit f50e16e02a

View File

@@ -509,7 +509,9 @@ project('spring-integration-cassandra') {
api project(':spring-integration-core')
api 'org.springframework.data:spring-data-cassandra'
testImplementation 'org.testcontainers:cassandra'
testImplementation ('org.testcontainers:cassandra') {
exclude group: 'com.datastax.cassandra'
}
}
}