Skip to content

Commit d8a336b

Browse files
committed
Upgrade to Gradle 8.5
* Fix `org.testcontainers` pattern for Dependabot * Downgrade to `com.gradle.enterprise:3.15` * Fix deprecation warning in the `KafkaDslKotlinTests.kt`
1 parent 4bf0d17 commit d8a336b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ updates:
3030
- "org.apache.derby"
3131
- "com.icegreen:greenmail"
3232
- "org.hibernate.orm*"
33-
- "org.testcontainers"
33+
- "org.testcontainers*"
3434
- "org.hsqldb:hsqldb"
3535
- "com.h2database:h2"
3636
- "org.postgresql:postgresql"

gradle/wrapper/gradle-wrapper.jar

-19.8 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
distributionSha256Sum=3e1af3ae886920c3ac87f7a91f816c0c7c436f276a6eefdb3da152100fef72ae
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'com.gradle.enterprise' version '3.16.1'
2+
id 'com.gradle.enterprise' version '3.15'
33
id 'io.spring.ge.conventions' version '0.0.14'
44
}
55

spring-integration-kafka/src/test/kotlin/org/springframework/integration/kafka/dsl/kotlin/KafkaDslKotlinTests.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018-2022 the original author or authors.
2+
* Copyright 2018-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -130,7 +130,7 @@ class KafkaDslKotlinTests {
130130
fun testKafkaAdapters() {
131131
this.sendToKafkaFlowInput.send(GenericMessage("foo", hashMapOf<String, Any>("foo" to "bar")))
132132

133-
assertThat(TestUtils.getPropertyValue(this.kafkaProducer1, "headerMapper")).isSameAs(this.mapper)
133+
assertThat(TestUtils.getPropertyValue(this.kafkaProducer1, "headerMapper")).isSameInstanceAs(this.mapper)
134134

135135
for (i in 0..99) {
136136
val receive = this.listeningFromKafkaResults1.receive(20000)

0 commit comments

Comments
 (0)