搜索 Gradle 插件

net.swisstech.elasticdependencies

Gradle 插件允许在多模块构建中将依赖项解析到项目依赖项中,或者如果没有找到匹配的模块,则解析到外部依赖项(允许在模块中使用 -u 开关,假设所有其他引用的模块都可以从您的存储库中获取)

https://github.com/stackmagic/gradle-elasticdependencies

版本 1.0.0(最新版本)

1.0.0

创建于 2014 年 11 月 10 日。

该插件版本将在 JCenter 成为 Maven Central 的永久跳转后无法解析,因为它只使用在 JCenter 中找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact

使用 插件 DSL

plugins {
  id("net.swisstech.elasticdependencies") version "1.0.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.swisstech:gradle-elasticdependencies:1.0.0")
  }
}

apply(plugin = "net.swisstech.elasticdependencies")

使用 插件 DSL

plugins {
  id "net.swisstech.elasticdependencies" version "1.0.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.swisstech:gradle-elasticdependencies:1.0.0"
  }
}

apply plugin: "net.swisstech.elasticdependencies"

了解如何应用插件到子项目