搜索 Gradle 插件

版本 19.0.10 (最新版本)

19.0.10

创建于 2024 年 6 月 21 日。

基于 gradle-git 的发布意见

使用插件 DSL

plugins {
  id("com.netflix.nebula.release") version "19.0.10"
}

使用遗留插件应用

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

apply(plugin = "com.netflix.nebula.release")

使用插件 DSL

plugins {
  id "com.netflix.nebula.release" version "19.0.10"
}

使用遗留插件应用

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

apply plugin: "com.netflix.nebula.release"

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