Search Gradle plugins

com.github.kamatama41.git-release

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)

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"

Learn how to apply plugins to subprojects