Search Gradle plugins

Version 6.1.0

6.1.0

Created 29 January 2018.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "nebula.ivy-excludes"

Learn how to apply plugins to subprojects