Search Gradle plugins

Version 1.0.3

1.0.3

Created 04 October 2015.

Gradle plugin to upload artifacts to CurseForge

Add this plugin to your build using the plugins DSL:

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

See also:

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