net.swisstech.elasticdependencies
Gradle plugin to allow resolving dependencies into project-dependencies in a multimodule build or, if no matching modules are found, into external dependencies (which allows using the -u switch in a module, assuming all other referenced modules are available from your repositories)
https://github.com/stackmagic/gradle-elasticdependencies
Version 1.0.0 (latest)
1.0.0
Created 10 November 2014.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Using the plugins DSL:
plugins {
id("net.swisstech.elasticdependencies") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.swisstech:gradle-elasticdependencies:1.0.0")
}
}
apply(plugin = "net.swisstech.elasticdependencies")
Using the plugins DSL:
plugins {
id "net.swisstech.elasticdependencies" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.swisstech:gradle-elasticdependencies:1.0.0"
}
}
apply plugin: "net.swisstech.elasticdependencies"