nl.elec332.gradle.minecraft.modmaven
Owner: AMJ
A Gradle plugin to simplify deployment of Minecraft Mods to the ModMaven
https://github.com/Elecs-Mods/GradleModDev
Sources: https://github.com/Elecs-Mods/GradleModDev.git
Version 0.2.2-Beta (latest)
0.2.2-Beta
Created 20 August 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.2.2-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.2.2-Beta")
}
}
apply(plugin = "nl.elec332.gradle.minecraft.modmaven")
Using the plugins DSL:
plugins {
id "nl.elec332.gradle.minecraft.modmaven" version "0.2.2-Beta"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.nl.elec332.gradle.minecraft:GradleModDev:0.2.2-Beta"
}
}
apply plugin: "nl.elec332.gradle.minecraft.modmaven"