Search Gradle plugins

Version 0.29.4

0.29.4

Created 09 October 2017.

Plugin that provides task for discovering dependency updates.

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.name.remal:gradle-plugins:0.29.4")
      }
    }
    
    apply(plugin = "name.remal.check-dependency-updates")
  • Applying plugins to all subprojects .