de.fayard.buildSrcLibs
Owner: Jean-Michel Fayard
Common Gradle dependencies - See gradle refreshVersions
https://splitties.github.io/refreshVersions/
Sources: https://github.com/jmfayard/refreshVersions
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
Using the plugins DSL:
plugins {
id("de.fayard.buildSrcLibs") version "0.60.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.fayard.refreshVersions:buildSrcLibs:0.60.5")
}
}
apply(plugin = "de.fayard.buildSrcLibs")
Using the plugins DSL:
plugins {
id "de.fayard.buildSrcLibs" version "0.60.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.fayard.refreshVersions:buildSrcLibs:0.60.5"
}
}
apply plugin: "de.fayard.buildSrcLibs"