搜索 Gradle 插件

版本 1.12.2(最新版本)

1.12.2

创建于 2014 年 6 月 12 日。

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

使用 插件 DSL

plugins {
  id("nebula.nebula-bintray-sync-publishing") version "1.12.2"
}

使用 旧插件应用

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

apply(plugin = "nebula.nebula-bintray-sync-publishing")

使用 插件 DSL

plugins {
  id "nebula.nebula-bintray-sync-publishing" version "1.12.2"
}

使用 旧插件应用

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

apply plugin: "nebula.nebula-bintray-sync-publishing"

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