搜索 Gradle 插件

使用 插件 DSL

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

使用 插件 DSL

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

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