The intended way to specify the variant of Marrow is as follows:
modImplementation("xyz.naomieow:marrow:2.1.2") {
capabilities {
requireFeature( "fabric")
}
}
but due to an upstream Cloche bug, the following must be used:
def variantAttribute = Attribute.of("earth.terrarium.cloche.modLoader", String::class)
modImplementation("xyz.naomieow:marrow:2.1.2") {
attributes {
attribute(variantAttribute, "fabric")
}
}
Marrow will stay published to only the nightly maven repo until this issue is solved
Should be fixed by Cloche
0.11.21