All Projects → matthewprenger → Cursegradle

matthewprenger / Cursegradle

Licence: mit
Gradle plugin to upload Minecraft mods to CurseForge

Programming Languages

groovy
2714 projects

CurseGradle

Build Status

A gradle plugin for publishing artifacts to CurseForge.

Simple Quickstart with ForgeGradle

If you're using ForgeGradle, which you probably are, the following script is a bare-minimum. For more details about customization, check out the Wiki.

To find out which versions are available, check HERE.

plugins {
    id 'net.minecraftforge.gradle.forge' version '2.0.2'
    id 'com.matthewprenger.cursegradle' version '<VERSION>'
}

curseforge {
  apiKey = '123-456' // This should really be in a gradle.properties file
  project {
    id = '12345'
    changelog = 'Changes' // A file can also be set using: changelog = file('changelog.txt')
    releaseType = 'beta'
  }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].