Search Gradle plugins

Version 1.1.1 (latest)

Created 26 April 2024.

A Gradle plugin to simplify development of (multi-loader) Minecraft Mods

Using the plugins DSL:

plugins {
  id("nl.elec332.gradle.minecraft.moddev") version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("nl.elec332.gradle.minecraft:GradleModDev:1.1.1")
  }
}

apply(plugin = "nl.elec332.gradle.minecraft.moddev")

Using the plugins DSL:

plugins {
  id "nl.elec332.gradle.minecraft.moddev" version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "nl.elec332.gradle.minecraft:GradleModDev:1.1.1"
  }
}

apply plugin: "nl.elec332.gradle.minecraft.moddev"

Learn how to apply plugins to subprojects