Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 19 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 (4 months ago)
- Default Branch: master
- Last Pushed: 2024-11-09T14:19:49.000Z (3 months ago)
- Last Synced: 2024-11-09T14:23:01.325Z (3 months ago)
- Topics: dependency-management, gradle-plugin
- Homepage: https://search.maven.org/artifact/se.bjurr.gradle.update-versions/se.bjurr.gradle.update-versions.gradle.plugin
- Size: 93.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Update Versions Gradle Plugin
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/se.bjurr.gradle.update-versions/se.bjurr.gradle.update-versions.gradle.plugin/badge.svg)](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