com.jashmore.gradle.github.release
Owner: Jaiden Ashmore
Plugin for handling milestone releases in a GitHub repository.
https://github.com/JaidenAshmore
Sources: https://github.com/JaidenAshmore/github-release-gradle-plugin
Version 0.0.2 (latest)
0.0.2
Created 23 August 2020.
Plugin for handling milestone releases in a GitHub repository.
Using the plugins DSL:
plugins {
id("com.jashmore.gradle.github.release") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.jashmore.gradle:github-release-gradle-plugin:0.0.2")
}
}
apply(plugin = "com.jashmore.gradle.github.release")
Using the plugins DSL:
plugins {
id "com.jashmore.gradle.github.release" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.jashmore.gradle:github-release-gradle-plugin:0.0.2"
}
}
apply plugin: "com.jashmore.gradle.github.release"