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.1-SNAPSHOT
0.0.1-SNAPSHOT
Created 17 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.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.jashmore.gradle.github.release:github-release-gradle-plugin:0.0.1-SNAPSHOT")
}
}
apply(plugin = "com.jashmore.gradle.github.release")
Using the plugins DSL:
plugins {
id "com.jashmore.gradle.github.release" version "0.0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.jashmore.gradle.github.release:github-release-gradle-plugin:0.0.1-SNAPSHOT"
}
}
apply plugin: "com.jashmore.gradle.github.release"