https://github.com/tomasbjerre/update-versions-gradle-plugin
Uses gradle-versions-plugin to supply tasks that can show updateable dependencies and also update them.
https://github.com/tomasbjerre/update-versions-gradle-plugin
dependency-management gradle-plugin
Last synced: 15 days ago
JSON representation
Uses gradle-versions-plugin to supply tasks that can show updateable dependencies and also update them.
- Host: GitHub
- URL: https://github.com/tomasbjerre/update-versions-gradle-plugin
- Owner: tomasbjerre
- License: apache-2.0
- Created: 2024-09-27T19:59:32.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-11-08T11:35:11.000Z (4 months ago)
- Last Synced: 2025-11-08T13:16:05.514Z (4 months ago)
- Topics: dependency-management, gradle-plugin
- Language: Shell
- Homepage: https://search.maven.org/artifact/se.bjurr.gradle.update-versions/se.bjurr.gradle.update-versions.gradle.plugin
- Size: 195 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Update Versions Gradle Plugin
[](https://search.maven.org/artifact/se.bjurr.gradle.update-versions/se.bjurr.gradle.update-versions.gradle.plugin)
Uses [gradle-versions-plugin](https://github.com/ben-manes/gradle-versions-plugin) to supply tasks that can show updateable dependencies and also update them.
## Usage
Apply it with:
```groovy
plugins {
id "se.bjurr.gradle.update-versions" version "X"
}
```
It adds these tasks:
- `./gradlew showUpdateableDependencies` - Print list of dependencies that can be updated.
- `./gradlew updateDependencies` - Update dependencies that can be updated.
It can be tweaked:
```groovy
updateVersions {
ignoreDependenciesRegexp.set("anything matching this regexp will be ignored")
}
```
Works great with https://github.com/tomasbjerre/conventional-release-gradle-plugin