io.github.andrew-malitchuk.yabd
Owner: Andrew Malitchuk
A handy Gradle plugin for automating build distribution to Slack, Telegram, and Jira.
https://github.com/andrew-malitchuk/yet-another-build-dispatcher
Sources: https://github.com/andrew-malitchuk/yet-another-build-dispatcher
Version 0.0.1-a.1
0.0.1-a.1
Created 08 April 2024.
A handy Gradle plugin for automating build distribution to Slack, Telegram, and Jira.
Using the plugins DSL:
plugins {
id("io.github.andrew-malitchuk.yabd") version "0.0.1-a.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.andrew-malitchuk:plugin:0.0.1-a.1")
}
}
apply(plugin = "io.github.andrew-malitchuk.yabd")
Using the plugins DSL:
plugins {
id "io.github.andrew-malitchuk.yabd" version "0.0.1-a.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.andrew-malitchuk:plugin:0.0.1-a.1"
}
}
apply plugin: "io.github.andrew-malitchuk.yabd"