搜索 Gradle 插件

版本 0.2.0 (最新)

0.2.0

创建于 2014 年 8 月 23 日。

没有可用的版本描述。

使用 插件 DSL

plugins {
  id("com.github.blazsolar.hipchat") version "0.2.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.blazsolar.gradle:gradle-hipchat-plugin:0.2.0")
  }
}

apply(plugin = "com.github.blazsolar.hipchat")

使用 插件 DSL

plugins {
  id "com.github.blazsolar.hipchat" version "0.2.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.blazsolar.gradle:gradle-hipchat-plugin:0.2.0"
  }
}

apply plugin: "com.github.blazsolar.hipchat"

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