Search Gradle plugins

Version 8.0.0 (latest)

Created 14 June 2018.

Insert excludes into the ivy.xml when individual dependencies have exclude statements

Using the plugins DSL:

plugins {
  id("nebula.ivy-excludes") version "8.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.netflix.nebula:nebula-publishing-plugin:8.0.0")
  }
}

apply(plugin = "nebula.ivy-excludes")

Using the plugins DSL:

plugins {
  id "nebula.ivy-excludes" version "8.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.netflix.nebula:nebula-publishing-plugin:8.0.0"
  }
}

apply plugin: "nebula.ivy-excludes"

Learn how to apply plugins to subprojects