搜索 Gradle 插件

使用 插件 DSL

plugins {
  id("nebula.nebula-bintray") version "8.5.0"
}

使用 旧插件应用方法

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

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

使用 插件 DSL

plugins {
  id "nebula.nebula-bintray" version "8.5.0"
}

使用 旧插件应用方法

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

apply plugin: "nebula.nebula-bintray"

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