-
Notifications
You must be signed in to change notification settings - Fork 7
Description
Hi, I am transforming my project from architectury loom to the modstitch it seems to mostly work great (with the patches applied from latest commits - please, upload snapshots to the maven)
However what i could do with the architectury loom or just plain fabric loom is to JiJ specific fabric modules easily like:
setOf(
"fabric-api-base",
"fabric-resource-loader-v0",
"fabric-registry-sync-v0",
"fabric-networking-api-v1"
).forEach {
include(modImplementation(fabricApi.module(it, property("fabric_api_version") as String)))
}I tried that within dependencies.modstitch.loom but no luck. It prints Unresolved reference: fabricApi error.
It wouldn't be needed if fabric api modules would inherit the same version number as the whole fabric api bundle, unfortunately the modules use some quite random to me number versions like e.g. fabric-api-base module within fabric api 0.127.1+1.21.6 has version 0.4.63. It would be a pain to manually check each version for each module in multi-version project.