Search Gradle plugins

Version 0.60.2

0.60.2

Created 29 August 2023.

Generates dependency notations constants in buildSrc and updates the versions with gradle refreshVersions

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.fayard.buildSrcLibs") version "0.60.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.fayard.refreshVersions:buildSrcLibs:0.60.2")
      }
    }
    
    apply(plugin = "de.fayard.buildSrcLibs")
  • Applying plugins to all subprojects .