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