Search Gradle plugins

Version 1.0.6

1.0.6

Created 10 January 2016.

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.6"
}

See also:

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