搜索 Gradle 插件

版本 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"

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