CDAGaming / CurseGradle

Gradle plugin to upload Minecraft mods to CurseForge

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CurseGradle

Build Status

A gradle plugin for publishing artifacts to CurseForge.

Quickstart

The following script is the bare-minimum. For more details about customization, check out the Wiki.

To find out which versions are available, check HERE.

plugins {
    id 'io.github.CDAGaming.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'
  }
}

About

Gradle plugin to upload Minecraft mods to CurseForge

License:MIT License


Languages

Language:Groovy 100.0%