Search Gradle plugins

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)

Created 10 November 2014.

No version description available.

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"

Learn how to apply plugins to subprojects