Search Gradle plugins

Version 0.60.5 (latest)

0.60.5

Created 05 February 2024.

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

See also:

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