me.fallenbreath.yamlang
Owner: Fallen_Breath
A gradle plugin to convert nestable yaml language file into plain json language file for Minecraft mods
https://github.com/Fallen-Breath/yamlang
Sources: https://github.com/Fallen-Breath/yamlang
Version 1.4.0 (latest)
1.4.0
Created 29 June 2024.
A gradle plugin to convert nestable yaml language file into plain json language file for Minecraft mods
Using the plugins DSL:
plugins {
id("me.fallenbreath.yamlang") version "1.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("me.fallenbreath:yamlang:1.4.0")
}
}
apply(plugin = "me.fallenbreath.yamlang")
Using the plugins DSL:
plugins {
id "me.fallenbreath.yamlang" version "1.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "me.fallenbreath:yamlang:1.4.0"
}
}
apply plugin: "me.fallenbreath.yamlang"