Search Gradle plugins

Version 0.1.0 (latest)

Created 10 September 2023.

A plugin to publish Gradle artifacts to a GitHub release

Using the plugins DSL:

plugins {
  id("ca.stellardrift.publish-github-release") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ca.stellardrift:publish-github-release:0.1.0")
  }
}

apply(plugin = "ca.stellardrift.publish-github-release")

Using the plugins DSL:

plugins {
  id "ca.stellardrift.publish-github-release" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ca.stellardrift:publish-github-release:0.1.0"
  }
}

apply plugin: "ca.stellardrift.publish-github-release"

Learn how to apply plugins to subprojects