搜索 Gradle 插件

版本 21.0.0 (最新)

21.0.0

创建于 2023年11月20日。

简化 maven-publish 和 ivy-publish 配置的插件

使用插件 DSL

plugins {
  id("com.netflix.nebula.maven-resolved-dependencies") version "21.0.0"
}

使用 旧插件应用

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

apply(plugin = "com.netflix.nebula.maven-resolved-dependencies")

使用插件 DSL

plugins {
  id "com.netflix.nebula.maven-resolved-dependencies" version "21.0.0"
}

使用 旧插件应用

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

apply plugin: "com.netflix.nebula.maven-resolved-dependencies"

了解如何应用插件到子项目