io.github.zsz.logback-yaml
Owner: Zoltán Szászi
Configuring Logback in YaML format
https://github.com/zsz/logback-yaml
Sources: https://github.com/zsz/logback-yaml
Version 1.0.1 (latest)
1.0.1
Created 05 October 2024.
Configuring Logback in YaML format
Using the plugins DSL:
plugins {
id("io.github.zsz.logback-yaml") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.zsz:logback-yaml:1.0.1")
}
}
apply(plugin = "io.github.zsz.logback-yaml")
Using the plugins DSL:
plugins {
id "io.github.zsz.logback-yaml" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.zsz:logback-yaml:1.0.1"
}
}
apply plugin: "io.github.zsz.logback-yaml"