ru.yoomoney.tech.moira-trigger-plugin
Owner: YooMoney Robot
Gradle plugin for Moira triggers publication
https://github.com/yoomoney-tech/moira-trigger-plugin
Sources: https://github.com/yoomoney-tech/moira-trigger-plugin.git
Version 3.2.9 (latest)
3.2.9
Created 30 October 2020.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Gradle plugin for Moira triggers publication
Using the plugins DSL:
plugins {
id("ru.yoomoney.tech.moira-trigger-plugin") version "3.2.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ru.yoomoney.tech:moira-trigger-plugin:3.2.9")
}
}
apply(plugin = "ru.yoomoney.tech.moira-trigger-plugin")
Using the plugins DSL:
plugins {
id "ru.yoomoney.tech.moira-trigger-plugin" version "3.2.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ru.yoomoney.tech:moira-trigger-plugin:3.2.9"
}
}
apply plugin: "ru.yoomoney.tech.moira-trigger-plugin"