com.github.frapontillo.switchdependencies
Owner: Francesco Pontillo
Gradle Plugin to conditionally switch dependencies
https://github.com/frapontillo/gradle-switch-dependencies-plugin
Sources: https://github.com/frapontillo/gradle-switch-dependencies-plugin
Version 0.0.1-alpha.0 (latest)
0.0.1-alpha.0
Created 10 December 2015.
Gradle Plugin to conditionally switch dependencies
Using the plugins DSL:
plugins {
id("com.github.frapontillo.switchdependencies") version "0.0.1-alpha.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.frapontillo:gradle-switch-dependencies-plugin:0.0.1-alpha.0")
}
}
apply(plugin = "com.github.frapontillo.switchdependencies")
Using the plugins DSL:
plugins {
id "com.github.frapontillo.switchdependencies" version "0.0.1-alpha.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.frapontillo:gradle-switch-dependencies-plugin:0.0.1-alpha.0"
}
}
apply plugin: "com.github.frapontillo.switchdependencies"