搜索Gradle插件

版本 18.4.0(最新版本)

18.4.0

创建于 2022年2月28日。

基于 nebula.ivy-dependencies 构建,删除具有平台或强制平台类别状态的依赖项

使用 插件DSL

plugins {
  id("nebula.ivy-remove-platform-dependencies") version "18.4.0"
}

使用 旧插件应用

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

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

使用 插件DSL

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

使用 旧插件应用

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

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

学习如何将插件应用于子项目