Search Gradle plugins

Version 2.5.2 (latest)

Created 02 November 2023.

A Gradle Plugin to send Releases to Github

Using the plugins DSL:

plugins {
  id("com.rickbusarow.github-release-fork") version "2.5.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.rickbusarow.githubreleasepluginfork:github-release:2.5.2")
  }
}

apply(plugin = "com.rickbusarow.github-release-fork")

Using the plugins DSL:

plugins {
  id "com.rickbusarow.github-release-fork" version "2.5.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.rickbusarow.githubreleasepluginfork:github-release:2.5.2"
  }
}

apply plugin: "com.rickbusarow.github-release-fork"

Learn how to apply plugins to subprojects