io.github.witgelm.eventscheme
Owner:
Viktor
Gradle plugin for generate events from yaml
https://github.com/Palta-Data-Platform/paltalib-andoird
Sources: https://github.com/Palta-Data-Platform/paltalib-andoird
Version 1.4.1 (latest)
Created 31 July 2023.
Gradle plugin for generate events from yaml
Using the plugins DSL:
plugins {
id("io.github.witgelm.eventscheme") version "1.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.witgelm.plugins:plugin:1.4.1")
}
}
apply(plugin = "io.github.witgelm.eventscheme")
Using the plugins DSL:
plugins {
id "io.github.witgelm.eventscheme" version "1.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.witgelm.plugins:plugin:1.4.1"
}
}
apply plugin: "io.github.witgelm.eventscheme"