Search Gradle plugins

Version 0.50.1

Created 12 September 2022.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "de.fayard.buildSrcLibs"

Learn how to apply plugins to subprojects