[build, minecraft] Publishing as Minecraft Fabric mods

This commit is contained in:
2025-08-03 15:58:55 +02:00
parent b5263c7a5c
commit f694672d5f
17 changed files with 251 additions and 3 deletions

View File

@@ -17,3 +17,10 @@ include("tweed5-weaver-pojo")
include("tweed5-weaver-pojo-attributes-extension")
include("tweed5-weaver-pojo-serde-extension")
include("tweed5-weaver-pojo-validation-extension")
includeAs("minecraft:tweed5-bundle", "minecraft/tweed5-bundle")
fun includeAs(name: String, path: String) {
include(name)
project(":$name").projectDir = file(path)
}