com.henrikstabell.gistgradle
Owner: Ole Henrik Stabell
Gradle plugin for creating and editing GitHub gists using your buildscripts
https://confluence.henrikstabell.com/display/GIS
Sources: https://github.com/Hennamann/GistGradle
Version 1.0-SNAPSHOT (latest)
1.0-SNAPSHOT
Created 20 March 2018.
Gradle plugin for creating and editing GitHub gists using your buildscripts
Using the plugins DSL:
plugins {
id("com.henrikstabell.gistgradle") version "1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.henrikstabell.gistgradle:buildSrc:1.0-SNAPSHOT")
}
}
apply(plugin = "com.henrikstabell.gistgradle")
Using the plugins DSL:
plugins {
id "com.henrikstabell.gistgradle" version "1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.henrikstabell.gistgradle:buildSrc:1.0-SNAPSHOT"
}
}
apply plugin: "com.henrikstabell.gistgradle"