搜索Gradle插件

com.github.rocketraman.dep-excludes

所有者: Raman Gupta

有时您只需要一种简单的方法来排除依赖关系,而无需创建闭包。此插件在Gradle项目中创建了一个方法,为排除提供了简短的语言糖。

https://github.com/rocketraman/gradle-dep-excludes-plugin

版本 0.1 (最新)

0.1

创建于 2014年10月18日。

没有可用的版本说明。

使用插件DSL

plugins {
  id("com.github.rocketraman.dep-excludes") version "0.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.rocketraman:dep-excludes-plugin:0.1")
  }
}

apply(plugin = "com.github.rocketraman.dep-excludes")

使用插件DSL

plugins {
  id "com.github.rocketraman.dep-excludes" version "0.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.rocketraman:dep-excludes-plugin:0.1"
  }
}

apply plugin: "com.github.rocketraman.dep-excludes"

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