yakworks.yaml-config
Owner: 9ci Bot
Use a YAML file to setup config for gradle builds
https://github.com/yakworks/gradle-plugins
Sources: https://github.com/yakworks/gradle-plugins.git
Version 2.7.5 (latest)
2.7.5
Created 30 June 2022.
Use a YAML file to setup config for gradle builds
Using the plugins DSL:
plugins {
id("yakworks.yaml-config") version "2.7.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.yakworks:gradle-plugins:2.7.5")
}
}
apply(plugin = "yakworks.yaml-config")
Using the plugins DSL:
plugins {
id "yakworks.yaml-config" version "2.7.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.yakworks:gradle-plugins:2.7.5"
}
}
apply plugin: "yakworks.yaml-config"