Search Gradle plugins

Version 0.1.3-Beta

Created 07 July 2020.

A Gradle plugin to simplify deployment of Minecraft Mods to the ModMaven

Using the plugins DSL:

plugins {
  id("nl.elec332.gradle.minecraft.modmaven") version "0.1.3-Beta"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "nl.elec332.gradle.minecraft.modmaven" version "0.1.3-Beta"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects