搜索 Gradle 插件

io.github.themrmilchmann.toolchain-switches

所有者: Leon Linhart

一个 Gradle 插件,可用于为特定任务添加可能用于动态在工具链之间切换的命令行参数。

https://github.com/TheMrMilchmann/gradle-toolchain-switches

源码:https://github.com/TheMrMilchmann/gradle-toolchain-switches.git

版本 0.3.0(最新版)

0.3.0

创建日期:2023年3月6日。

一个 Gradle 插件,可以通过项目属性使特定任务的工具链动态配置。

使用 插件 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"

学习如何应用插件到子项目