Search Gradle plugins

Version 0.30.0

Created 19 December 2021.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.fayard.refreshVersions:buildSrcLibs:0.30.0")
  }
}

apply(plugin = "de.fayard.buildSrcLibs")

Using the plugins DSL:

plugins {
  id "de.fayard.buildSrcLibs" version "0.30.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.fayard.refreshVersions:buildSrcLibs:0.30.0"
  }
}

apply plugin: "de.fayard.buildSrcLibs"

Learn how to apply plugins to subprojects