nebula.ivy-resolved-dependencies
所有者: Nebula插件
在nebula.ivy-dependencies的基础上构建,用实际解析的版本替换动态版本
https://github.com/nebula-plugins/nebula-publishing-plugin
来源: https://github.com/nebula-plugins/nebula-publishing-plugin.git
使用plugins DSL
plugins {
id("nebula.ivy-resolved-dependencies") version "18.4.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:18.4.0")
}
}
apply(plugin = "nebula.ivy-resolved-dependencies")
使用plugins DSL
plugins {
id "nebula.ivy-resolved-dependencies" version "18.4.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:18.4.0"
}
}
apply plugin: "nebula.ivy-resolved-dependencies"