Search Gradle plugins

Version 0.1.0

0.1.0

Created 17 March 2018.

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.1.0"
}

See also:

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