io.ezet.gradle.resolve-to-module
所有者: Lars-Kristian Dahl
如果存在本地源模块,将Gradle库依赖项解析到本地源模块。这可以与`try-include-local`结合使用,以方便在开发时用本地源替换远程托管依赖。
https://github.com/ezet/gradle-substitute-for-source
来源:https://github.com/ezet/gradle-substitute-for-source
版本 0.0.1-alpha1(最新版)
0.0.1-alpha1
创建于2019年11月15日。
如果存在本地源模块,将Gradle库依赖项解析到本地源模块。这可以与`try-include-local`结合使用,以方便在开发时用本地源替换远程托管依赖。
使用插件DSL
plugins {
id("io.ezet.gradle.resolve-to-module") version "0.0.1-alpha1"
}
使用旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.ezet.gradle:gradle-substitute-for-source:0.0.1-alpha1")
}
}
apply(plugin = "io.ezet.gradle.resolve-to-module")
使用插件DSL
plugins {
id "io.ezet.gradle.resolve-to-module" version "0.0.1-alpha1"
}
使用旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.ezet.gradle:gradle-substitute-for-source:0.0.1-alpha1"
}
}
apply plugin: "io.ezet.gradle.resolve-to-module"