This is an automated email from the ASF dual-hosted git repository.
chia7712 pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new 8a1c619968f MINOR: `gradle-versions-plugin` version update: 0.52.0
-->> 0.53.0 (some issues with Gradle 9+ are solved) (#20652)
8a1c619968f is described below
commit 8a1c619968fda46ab7d2f1fcef2c843a360d3308
Author: Dejan Stojadinović <[email protected]>
AuthorDate: Wed Oct 8 07:31:51 2025 +0200
MINOR: `gradle-versions-plugin` version update: 0.52.0 -->> 0.53.0 (some
issues with Gradle 9+ are solved) (#20652)
Extends from: #19513
Note: in Gradle 9+ we have to add a switch like this:
```
./gradlew dependencyUpdates --no-parallel
```
Related link:
https://github.com/ben-manes/gradle-versions-plugin/releases/tag/v0.53.0
Reviewers: Chia-Ping Tsai <[email protected]>
---
README.md | 2 +-
build.gradle | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 06c0e3921eb..c6a9dc54321 100644
--- a/README.md
+++ b/README.md
@@ -232,7 +232,7 @@ Alternatively, use the `allDeps` or `allDepInsight` tasks
for recursively iterat
These take the same arguments as the builtin variants.
### Determining if any dependencies could be updated ###
- ./gradlew dependencyUpdates
+ ./gradlew dependencyUpdates --no-parallel
### Common build options ###
diff --git a/build.gradle b/build.gradle
index 1b4444b9608..5b08bbf106e 100644
--- a/build.gradle
+++ b/build.gradle
@@ -29,7 +29,7 @@ buildscript {
}
plugins {
- id 'com.github.ben-manes.versions' version '0.52.0'
+ id 'com.github.ben-manes.versions' version '0.53.0'
id 'idea'
id 'jacoco'
id 'java-library'