[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

@@ -0,0 +1,15 @@
plugins {
`kotlin-dsl`
`java-gradle-plugin`
}
repositories {
gradlePluginPortal()
}
gradlePlugin {
plugins.register("minecraftModComponent") {
id = "de.siphalor.tweed5.minecraft.mod.component"
implementationClass = "de.siphalor.tweed5.gradle.plugin.minecraft.mod.MinecraftModComponentPlugin"
}
}