Search Gradle plugins

dev.nanite.mlp

Owner: Nanite

A gradle plugin designed for easing the creation of MultiLoader Minecraft mods. It currently supports Fabric & Forge.

https://github.com/nanite/multiloader-plugin/

Sources: https://github.com/nanite/multiloader-plugin/

Version 0.1.8 (latest)

Created 24 April 2024.

A gradle plugin designed for easing the creation of MultiLoader Minecraft mods. It currently supports Fabric & Forge.

Using the plugins DSL:

plugins {
  id("dev.nanite.mlp") version "0.1.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.nanite:plugin:0.1.8")
  }
}

apply(plugin = "dev.nanite.mlp")

Using the plugins DSL:

plugins {
  id "dev.nanite.mlp" version "0.1.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.nanite:plugin:0.1.8"
  }
}

apply plugin: "dev.nanite.mlp"

Learn how to apply plugins to subprojects