nebula.resolution-rules-producer
所有者: 星云插件
生成一个由 'nebula.resolution-rules' 消耗的解析规则文件
https://github.com/nebula-plugins/gradle-resolution-rules-plugin
来源: https://github.com/nebula-plugins/gradle-resolution-rules-plugin.git
使用 插件 DSL
plugins {
id("nebula.resolution-rules-producer") version "1.5.1"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:gradle-resolution-rules-plugin:1.5.1")
}
}
apply(plugin = "nebula.resolution-rules-producer")
使用 插件 DSL
plugins {
id "nebula.resolution-rules-producer" version "1.5.1"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-resolution-rules-plugin:1.5.1"
}
}
apply plugin: "nebula.resolution-rules-producer"