io.github.themrmilchmann.toolchain-switches
所有者: Leon Linhart
一个 Gradle 插件,可用于为特定任务添加可能用于动态在工具链之间切换的命令行参数。
https://github.com/TheMrMilchmann/gradle-toolchain-switches
源码:https://github.com/TheMrMilchmann/gradle-toolchain-switches.git
使用 插件 DSL
plugins {
id("io.github.themrmilchmann.toolchain-switches") version "0.3.0"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.themrmilchmann.gradle.toolchainswitches:gradle-toolchain-switches:0.3.0")
}
}
apply(plugin = "io.github.themrmilchmann.toolchain-switches")
使用 插件 DSL
plugins {
id "io.github.themrmilchmann.toolchain-switches" version "0.3.0"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.themrmilchmann.gradle.toolchainswitches:gradle-toolchain-switches:0.3.0"
}
}
apply plugin: "io.github.themrmilchmann.toolchain-switches"