[coat-bridge] Implement first version of Tweed Coat bridge

This commit is contained in:
2025-10-31 14:07:38 +01:00
parent f514894c9c
commit 7c625e6cca
27 changed files with 1118 additions and 2 deletions

View File

@@ -4,5 +4,18 @@ plugins {
}
dependencies {
modImplementation(mcLibs.coat)
compileOnly("de.siphalor.tweed5:tweed5-core")
compileOnly("de.siphalor.tweed5:tweed5-attributes-extension")
compileOnly("de.siphalor.tweed5:tweed5-default-extensions")
compileOnly("de.siphalor.tweed5:tweed5-weaver-pojo")
modCompileOnly(mcLibs.coat)
listOf("fabric-key-binding-api-v1", "fabric-resource-loader-v0").forEach {
modTestmodImplementation(fabricApi.module(it, mcLibs.versions.fabric.api.get()))
}
testmodImplementation(project(":tweed5-bundle", configuration = "minecraftModElements"))
modTestmodImplementation(mcLibs.coat)
modTestmodImplementation(mcLibs.amecs.api)
testmodImplementation(project(":tweed5-fabric-helper"))
testmodImplementation("de.siphalor.tweed5:tweed5-serde-hjson")
}