net.neoforged.moddev.repositories
Owner: The NeoForged Project
This plugin adds the repositories needed for developing Minecraft mods. It is applied automatically by the moddev plugin, but can be applied manually in settings.gradle to make use of Gradle dependency management.
https://github.com/neoforged/ModDevGradle
Sources: https://github.com/neoforged/ModDevGradle.git
Version 0.1.96
0.1.96
Created 20 June 2024.
This plugin adds the repositories needed for developing Minecraft mods. It is applied automatically by the moddev plugin, but can be applied manually in settings.gradle to make use of Gradle dependency management.
Add this plugin to your build using the plugins DSL:
plugins {
id("net.neoforged.moddev.repositories") version "0.1.96"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.neoforged:moddev-gradle:0.1.96") } } apply(plugin = "net.neoforged.moddev.repositories")
- Applying plugins to all subprojects .