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.4.4
4.4.4
Created 01 December 2015.
Insert excludes into the pom when individual dependencies have exclude statements
Using the plugins DSL:
plugins {
id("nebula.maven-excludes") version "4.4.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:4.4.4")
}
}
apply(plugin = "nebula.maven-excludes")
Using the plugins DSL:
plugins {
id "nebula.maven-excludes" version "4.4.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:4.4.4"
}
}
apply plugin: "nebula.maven-excludes"