lukasz-antoniak opened a new pull request, #2059: URL: https://github.com/apache/cassandra-java-driver/pull/2059
Fixes [CASSJAVA-114](https://issues.apache.org/jira/browse/CASSJAVA-114). Reproduction steps: 1. Checkout _main_ branch of https://github.com/spring-projects/spring-aot-smoke-tests 2. Remove workaround applied in https://github.com/spring-projects/spring-aot-smoke-tests/commit/8b99eb7fc811eca37d3fc8682651fbd623d869b4 3. Update `data/data-cassandra-reactive/build.gradle` with: ``` repositories { mavenLocal() } configurations.all { resolutionStrategy { force("org.apache.cassandra:java-driver-core:4.19.1-SNAPSHOT") force("org.apache.cassandra:java-driver-guava-shaded:4.19.1-SNAPSHOT") force("org.apache.cassandra:java-driver-query-builder:4.19.1-SNAPSHOT") } } ``` 4. Apply changes locally to Java driver and install it in local Maven repository. 5. Run Gradle build to check the fix: ``` ./gradlew clean :data:data-cassandra-reactive:nativeCompile --rerun-tasks ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

