搜索Gradle插件

版本 1.0.2(最新版)

1.0.2

创建于2016年10月24日。

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

使用plugins DSL

plugins {
  id("com.github.missedone.bintray-p2") version "1.0.2"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.missedone:gradle-bintray-p2-plugin:1.0.2")
  }
}

apply(plugin = "com.github.missedone.bintray-p2")

使用plugins DSL

plugins {
  id "com.github.missedone.bintray-p2" version "1.0.2"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.missedone:gradle-bintray-p2-plugin:1.0.2"
  }
}

apply plugin: "com.github.missedone.bintray-p2"

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