nebula.ivy-remove-platform-dependencies
Owner: Nebula Plugins
Built on top of nebula.ivy-dependencies, removes dependencies with platform or enforced-platform category status
https://github.com/nebula-plugins/nebula-publishing-plugin
Sources: https://github.com/nebula-plugins/nebula-publishing-plugin.git
Version 13.2.0
13.2.0
Created 07 August 2019.
Built on top of nebula.ivy-dependencies, removes dependencies with platform or enforced-platform category status
Using the plugins DSL:
plugins {
id("nebula.ivy-remove-platform-dependencies") version "13.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:13.2.0")
}
}
apply(plugin = "nebula.ivy-remove-platform-dependencies")
Using the plugins DSL:
plugins {
id "nebula.ivy-remove-platform-dependencies" version "13.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:13.2.0"
}
}
apply plugin: "nebula.ivy-remove-platform-dependencies"