Search Gradle plugins

A highly opinionated conventions plugin for developing Minecraft mods that are compatible with multiple mod loaders.

https://github.com/Darkhax-Minecraft/Minecraft-Mod-Conventions-Plugin

Sources: https://github.com/Darkhax-Minecraft/Minecraft-Mod-Conventions-Plugin.git

Version 26.1.0.9

Created 31 March 2026.

A highly opinionated conventions plugin for developing Minecraft mods that are compatible with multiple mod loaders.

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.darkhax.mmc") version "26.1.0.9"
}

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.darkhax.mmc:net.darkhax.mmc.gradle.plugin:26.1.0.9")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("net.darkhax.mmc")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.darkhax.mmc:net.darkhax.mmc.gradle.plugin:26.1.0.9")
      }
    }
    
    apply(plugin = "net.darkhax.mmc")
  • Applying plugins to all subprojects .