Search Gradle plugins

net.neoforged.moddev.repositories

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.neoforged.moddev.repositories") version "2.0.37-beta"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.neoforged:moddev-gradle:2.0.37-beta")
      }
    }
    
    apply(plugin = "net.neoforged.moddev.repositories")
  • Applying plugins to all subprojects .