no.systemfabrikken.githubreleaseplugin
Owner: Kai Lilleby
Gradle plugin for github release.
https://github.com/systemfabrikken/gradle-githubrelease-plugin
Sources: https://github.com/systemfabrikken
Version 3.3 (latest)
3.3
Created 02 January 2023.
Gradle plugin for generering av github endringslog.
Using the plugins DSL:
plugins {
id("no.systemfabrikken.githubreleaseplugin") version "3.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("no.systemfabrikken.githubreleaseplugin:gradle-githubrelease-plugin:3.3")
}
}
apply(plugin = "no.systemfabrikken.githubreleaseplugin")
Using the plugins DSL:
plugins {
id "no.systemfabrikken.githubreleaseplugin" version "3.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "no.systemfabrikken.githubreleaseplugin:gradle-githubrelease-plugin:3.3"
}
}
apply plugin: "no.systemfabrikken.githubreleaseplugin"