搜索 Gradle 插件

版本 4.0.1 (最新)

4.0.1

创建于 2016年2月5日。

由于它仅使用在 JCenter 可找到的依赖项,此插件版本将在 JCenter 成为永久重定向到 Maven Central 之后不再解析。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 在 gradle-git 之上发布意见

使用 插件 DSL

plugins {
  id("nebula.nebula-release") version "4.0.1"
}

使用 旧插件应用

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

apply(plugin = "nebula.nebula-release")

使用 插件 DSL

plugins {
  id "nebula.nebula-release" version "4.0.1"
}

使用 旧插件应用

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

apply plugin: "nebula.nebula-release"

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