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 1.0.20
1.0.20
Created 28 September 2024.
This plugin helps you create Minecraft mods using the NeoForge platform
Using the plugins DSL:
plugins {
id("net.neoforged.moddev") version "1.0.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.neoforged:moddev-gradle:1.0.20")
}
}
apply(plugin = "net.neoforged.moddev")
Using the plugins DSL:
plugins {
id "net.neoforged.moddev" version "1.0.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.neoforged:moddev-gradle:1.0.20"
}
}
apply plugin: "net.neoforged.moddev"