de.fayard.refreshVersions
Owner:
Jean-Michel Fayard
Painless dependencies management
https://jmfayard.github.io/refreshVersions
Sources: https://github.com/jmfayard/buildSrcVersions
Version 0.60.3 (latest)
Created 27 September 2023.
Common Gradle dependencies - See gradle refreshVersions
Using the plugins DSL:
plugins {
id("de.fayard.refreshVersions") version "0.60.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.fayard.refreshVersions:refreshVersions:0.60.3")
}
}
apply(plugin = "de.fayard.refreshVersions")
Using the plugins DSL:
plugins {
id "de.fayard.refreshVersions" version "0.60.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.fayard.refreshVersions:refreshVersions:0.60.3"
}
}
apply plugin: "de.fayard.refreshVersions"