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.1 (latest)
Created 15 January 2025.
A gradle plugin to convert nestable yaml language file into plain json language file for Minecraft mods
Add this plugin to your build using the plugins DSL:
plugins {
id("me.fallenbreath.yamlang") version "1.4.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("me.fallenbreath.yamlang:me.fallenbreath.yamlang.gradle.plugin:1.4.1") }
It can then be applied in the precompiled script plugin:plugins { id("me.fallenbreath.yamlang") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("me.fallenbreath.yamlang:me.fallenbreath.yamlang.gradle.plugin:1.4.1") } } apply(plugin = "me.fallenbreath.yamlang")
- Applying plugins to all subprojects .