nl.elec332.gradle.minecraft.moddev
Owner: AMJ
A Gradle plugin to simplify development of Minecraft Mods
https://github.com/Elecs-Mods/GradleModDev
Sources: https://github.com/Elecs-Mods/GradleModDev.git
Version 1.1.2 (latest)
Created 27 November 2024.
A Gradle plugin to simplify development of (multi-loader) Minecraft Mods
Add this plugin to your build using the plugins DSL:
plugins {
id("nl.elec332.gradle.minecraft.moddev") version "1.1.2"
}
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("nl.elec332.gradle.minecraft.moddev:nl.elec332.gradle.minecraft.moddev.gradle.plugin:1.1.2") }
It can then be applied in the precompiled script plugin:plugins { id("nl.elec332.gradle.minecraft.moddev") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("nl.elec332.gradle.minecraft.moddev:nl.elec332.gradle.minecraft.moddev.gradle.plugin:1.1.2") } } apply(plugin = "nl.elec332.gradle.minecraft.moddev")
- Applying plugins to all subprojects .