de.fayard.refreshVersions-core
所有者: Jean-Michel Fayard
无痛苦的依赖管理
https://splitties.github.io/refreshVersions/
源码: https://github.com/jmfayard/refreshVersions
使用 plugins DSL
plugins {
id("de.fayard.refreshVersions-core") version "0.60.5"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("de.fayard.refreshVersions:refreshVersions-core:0.60.5")
}
}
apply(plugin = "de.fayard.refreshVersions-core")
使用 plugins DSL
plugins {
id "de.fayard.refreshVersions-core" version "0.60.5"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "de.fayard.refreshVersions:refreshVersions-core:0.60.5"
}
}
apply plugin: "de.fayard.refreshVersions-core"