nebula.maven-excludes
Owner: Nebula Plugins
Insert excludes into the pom when individual dependencies have exclude statements
https://github.com/nebula-plugins/nebula-publishing-plugin
Sources: https://github.com/nebula-plugins/nebula-publishing-plugin.git
Version 4.8.0
4.8.0
Created 10 June 2016.
Insert excludes into the pom when individual dependencies have exclude statements
Using the plugins DSL:
plugins {
id("nebula.maven-excludes") version "4.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:4.8.0")
}
}
apply(plugin = "nebula.maven-excludes")
Using the plugins DSL:
plugins {
id "nebula.maven-excludes" version "4.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:4.8.0"
}
}
apply plugin: "nebula.maven-excludes"