com.github.blazsolar.hipchat
Owner: Blaž Šolar
Gradle plugin that allows you to send messages to HipChat.
https://github.com/blazsolar/gradle-hipchat-plugin
Version 0.2.0 (latest)
0.2.0
Created 23 August 2014.
No version description available.
Using the plugins DSL:
plugins {
id("com.github.blazsolar.hipchat") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.blazsolar.gradle:gradle-hipchat-plugin:0.2.0")
}
}
apply(plugin = "com.github.blazsolar.hipchat")
Using the plugins DSL:
plugins {
id "com.github.blazsolar.hipchat" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.blazsolar.gradle:gradle-hipchat-plugin:0.2.0"
}
}
apply plugin: "com.github.blazsolar.hipchat"