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 8.0.0 (latest)
8.0.0
Created 14 June 2018.
Insert excludes into the pom when individual dependencies have exclude statements
Using the plugins DSL:
plugins {
id("nebula.maven-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.maven-excludes")
Using the plugins DSL:
plugins {
id "nebula.maven-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.maven-excludes"