Search Gradle plugins

Version 10.0.0

10.0.0

Created 18 February 2021.

Allows projects to leave off version numbers in dependencies section and have versions recommended by other sources

Add this plugin to your build using the plugins DSL:

plugins {
  id("nebula.dependency-recommender") version "10.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.netflix.nebula:nebula-dependency-recommender:10.0.0")
      }
    }
    
    apply(plugin = "nebula.dependency-recommender")
  • Applying plugins to all subprojects .