Search Gradle plugins

Version 0.2.17

0.2.17

Created 30 May 2021.

A plugin that updates the versions of your dependencies in your *.gradle files to the latest available versions. This plugin depends on the Gradle Versions Plugin.

Add this plugin to your build using the plugins DSL:

plugins {
  id("se.patrikerdes.use-latest-versions") version "0.2.17"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("se.patrikerdes:gradle-use-latest-versions-plugin:0.2.17")
      }
    }
    
    apply(plugin = "se.patrikerdes.use-latest-versions")
  • Applying plugins to all subprojects .