name.remal.check-dependency-updates

Deprecated: Use automatic dependency updates software like Renovate, Dependabot, etc...

Plugin class: name.remal.gradle_plugins.plugins.check_updates.CheckDependencyUpdatesPlugin

plugins {
    id 'name.remal.check-dependency-updates' version '1.5.0'
}
plugins {
    id("name.remal.check-dependency-updates") version "1.5.0"
}

 

The plugin applies plugin name.remal.dependency-versions.

 

The plugin creates checkDependencyUpdates task of type CheckDependencyUpdates that displays dependency updates for the project.

Also the plugin create checkDependencyUpdates configuration to specify dependencies that have to be checked for available updates.

 

name.remal.gradle_plugins.plugins.check_updates.CheckDependencyUpdates

Property Type Description
notCheckedDependencies MutableSet<String> Dependency notations to exclude from checking for available updates, for example: com.google.guava:guava. You can use * character to specify a notation pattern, for example: com.*.guava:*.
checkAllVersionsDependencies MutableSet<String> Dependency notations to check for all available version, even excluded with name.remal.dependency-versions plugin. You can use * character as for notCheckedDependencies property.
failIfUpdatesFound boolean Fail the build if new versions have been found. Default value: false.