com.github.kamatama41.git-release
Owner: Shinichi Ishimura
A Gradle plugin that can release a Maven artifact into a Git repository, which is generally expected to be a GitHub Pages.
https://github.com/kamatama41/gradle-git-release-plugin
Sources: https://github.com/kamatama41/gradle-git-release-plugin
Version 0.3.0 (latest)
0.3.0
Created 02 March 2019.
A Gradle plugin that can release a Maven artifact into a Git repository, which is generally expected to be a GitHub Pages.
Using the plugins DSL:
plugins {
id("com.github.kamatama41.git-release") version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.kamatama41:gradle-git-release-plugin:0.3.0")
}
}
apply(plugin = "com.github.kamatama41.git-release")
Using the plugins DSL:
plugins {
id "com.github.kamatama41.git-release" version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.kamatama41:gradle-git-release-plugin:0.3.0"
}
}
apply plugin: "com.github.kamatama41.git-release"