net.neoforged.moddev
Owner: The NeoForged Project
This plugin helps you create Minecraft mods using the NeoForge platform
https://github.com/neoforged/ModDevGradle
Sources: https://github.com/neoforged/ModDevGradle.git
Version 2.0.45-beta
Created 22 November 2024.
This plugin helps you create Minecraft mods using the NeoForge platform
Add this plugin to your build using the plugins DSL:
plugins {
id("net.neoforged.moddev") version "2.0.45-beta"
}
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("net.neoforged.moddev:net.neoforged.moddev.gradle.plugin:2.0.45-beta") }
It can then be applied in the precompiled script plugin:plugins { id("net.neoforged.moddev") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.neoforged.moddev:net.neoforged.moddev.gradle.plugin:2.0.45-beta") } } apply(plugin = "net.neoforged.moddev")
- Applying plugins to all subprojects .