Owner:
vfyjxf
Distributed yaml translation system: per-locale multi-file yaml sources are packed into vanilla lang json at build time, together with a generated typed key class (configurable name, package and naming style).
Version 0.1.0 (latest)
Created 03 September 2026.
Distributed yaml translation system: per-locale multi-file yaml sources are packed into vanilla lang json at build time, together with a generated typed key class (configurable name, package and naming style).
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.vfyjxf.cloudlib.lang") version "0.1.0"
}
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("dev.vfyjxf.cloudlib.lang:dev.vfyjxf.cloudlib.lang.gradle.plugin:0.1.0") }It can then be applied in the precompiled script plugin:plugins { id("dev.vfyjxf.cloudlib.lang") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.vfyjxf.cloudlib.lang:dev.vfyjxf.cloudlib.lang.gradle.plugin:0.1.0") } } apply(plugin = "dev.vfyjxf.cloudlib.lang") - Applying plugins to all subprojects .