Search Gradle plugins

Version 1.1.2

1.1.2

Created 02 December 2018.

Gradle plugin to upload artifacts to CurseForge

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.matthewprenger.cursegradle") version "1.1.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.matthewprenger:CurseGradle:1.1.2")
      }
    }
    
    apply(plugin = "com.matthewprenger.cursegradle")
  • Applying plugins to all subprojects .