Search Gradle plugins

Version 0.2.21 (latest)

Created 05 January 2021.

Deprecated, please use org.shipkit.shipkit-github-release

Using the plugins DSL:

plugins {
  id("org.shipkit.shipkit-gh-release") version "0.2.21"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.shipkit:shipkit-changelog:0.2.21")
  }
}

apply(plugin = "org.shipkit.shipkit-gh-release")

Using the plugins DSL:

plugins {
  id "org.shipkit.shipkit-gh-release" version "0.2.21"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.shipkit:shipkit-changelog:0.2.21"
  }
}

apply plugin: "org.shipkit.shipkit-gh-release"

Learn how to apply plugins to subprojects