搜索Gradle插件

版本 21.0.0 (最新版本)

21.0.0

创建时间:2023年11月20日。

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

使用 plugins DSL

plugins {
  id("com.netflix.nebula.maven-manifest") 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-manifest")

使用 plugins DSL

plugins {
  id "com.netflix.nebula.maven-manifest" 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-manifest"

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