com.matthewprenger.cursegradle
Owner: Matthew Prenger
Gradle plugin to upload artifacts to CurseForge
https://github.com/matthewprenger/CurseGradle
Sources: https://github.com/matthewprenger/CurseGradle.git
Version 1.4.0 (latest)
1.4.0
Created 13 August 2019.
Gradle plugin to upload artifacts to CurseForge
Using the plugins DSL:
plugins {
id("com.matthewprenger.cursegradle") version "1.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.matthewprenger:CurseGradle:1.4.0")
}
}
apply(plugin = "com.matthewprenger.cursegradle")
Using the plugins DSL:
plugins {
id "com.matthewprenger.cursegradle" version "1.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.matthewprenger:CurseGradle:1.4.0"
}
}
apply plugin: "com.matthewprenger.cursegradle"