com.github.frapontillo.switchdependencies
所有者: Francesco Pontillo
Gradle 插件条件切换依赖
https://github.com/frapontillo/gradle-switch-dependencies-plugin
来源: https://github.com/frapontillo/gradle-switch-dependencies-plugin
版本 0.0.1-alpha.0(最新版)
0.0.1-alpha.0
创建于 2015年12月10日。
Gradle 插件条件切换依赖
使用插件 DSL
plugins {
id("com.github.frapontillo.switchdependencies") version "0.0.1-alpha.0"
}
使用遗留插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.frapontillo:gradle-switch-dependencies-plugin:0.0.1-alpha.0")
}
}
apply(plugin = "com.github.frapontillo.switchdependencies")
使用插件 DSL
plugins {
id "com.github.frapontillo.switchdependencies" version "0.0.1-alpha.0"
}
使用遗留插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.frapontillo:gradle-switch-dependencies-plugin:0.0.1-alpha.0"
}
}
apply plugin: "com.github.frapontillo.switchdependencies"