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 0.0.1
0.0.1
Created 25 September 2024.
Gradle plugin for generate events from yaml
Using the plugins DSL:
plugins {
id("io.github.witgelm.eventscheme") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.witgelm.plugins:eventscheme:0.0.1")
}
}
apply(plugin = "io.github.witgelm.eventscheme")
Using the plugins DSL:
plugins {
id "io.github.witgelm.eventscheme" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.witgelm.plugins:eventscheme:0.0.1"
}
}
apply plugin: "io.github.witgelm.eventscheme"