Search Gradle plugins

com.github.rocketraman.dep-excludes

Sometimes you just want a simple way to exclude dependencies without creating closures. This plugin creates a method on a Gradle project that provides a little syntax sugar for exclusions.

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

Version 0.1 (latest)

Created 18 October 2014.

No version description available.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects