This is an automated email from the ASF dual-hosted git repository. ppalaga pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 7be519d2110b9b933eb20d3cccfe6e596cd627a7 Author: Peter Palaga <[email protected]> AuthorDate: Fri Jun 4 15:24:05 2021 +0200 Workaround #2724 cassandra-driver-core 3.5.0 managed in Debezium BOM too old for testcontainers 1.15.3 --- pom.xml | 1 + poms/bom-test/pom.xml | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9abc09d..89a3f62 100644 --- a/pom.xml +++ b/pom.xml @@ -59,6 +59,7 @@ <avro.version>1.10.2</avro.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:org.apache.avro:avro --> <aws-java-sdk.version>1.11.714</aws-java-sdk.version> <azure-sdk-bom.version>${azure-sdk-bom-version}</azure-sdk-bom.version> + <cassandra-driver.version>3.11.0</cassandra-driver.version><!-- Can be removed when we get it from Debzium BOM https://github.com/apache/camel-quarkus/issues/2724 --> <commons-beanutils.version>${commons-beanutils-version}</commons-beanutils.version> <commons-cli.version>1.4</commons-cli.version><!-- keep in sync with Quarkus, via quarkus-bootstrap-core --> <commons-collections.version>3.2.2</commons-collections.version><!-- used by hbase, should be pretty stable as commons-collections are not developed actively anymore --> diff --git a/poms/bom-test/pom.xml b/poms/bom-test/pom.xml index d7870aa..ce84a50 100644 --- a/poms/bom-test/pom.xml +++ b/poms/bom-test/pom.xml @@ -17,7 +17,8 @@ limitations under the License. --> -<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"> +<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> <parent> @@ -221,6 +222,11 @@ <artifactId>aws-java-sdk-core</artifactId> <version>${aws-java-sdk.version}</version> </dependency> + <dependency> + <groupId>com.datastax.cassandra</groupId> + <artifactId>cassandra-driver-core</artifactId> + <version>${cassandra-driver.version}</version> + </dependency> </dependencies> </dependencyManagement>
