Search Gradle plugins

nebula.ivy-remove-platform-dependencies

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 17.0.0

Created 10 February 2020.

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 "17.0.0"
}

Using legacy plugin application:

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

apply(plugin = "nebula.ivy-remove-platform-dependencies")

Using the plugins DSL:

plugins {
  id "nebula.ivy-remove-platform-dependencies" version "17.0.0"
}

Using legacy plugin application:

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

apply plugin: "nebula.ivy-remove-platform-dependencies"

Learn how to apply plugins to subprojects