gg.meza.stonecraft
Owner: Meza
Stonecraft is a configuration Gradle plugin that removes the boilerplate of setting up a multi-loader, multi-version Minecraft modding workspace.
Sources: https://github.com/meza/Stonecraft.git
Version 1.0.0
Created 13 January 2025.
Stonecraft is a configuration Gradle plugin that removes the boilerplate of setting up a multi-loader, multi-version Minecraft modding workspace.
Add this plugin to your build using the plugins DSL:
plugins {
id("gg.meza.stonecraft") version "1.0.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("gg.meza.stonecraft:gg.meza.stonecraft.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("gg.meza.stonecraft") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gg.meza.stonecraft:gg.meza.stonecraft.gradle.plugin:1.0.0") } } apply(plugin = "gg.meza.stonecraft")
- Applying plugins to all subprojects .