Search Gradle plugins

Version 1.4.0 (latest)

Created 13 August 2019.

Gradle plugin to upload artifacts to CurseForge

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.matthewprenger:CurseGradle:1.4.0")
  }
}

apply(plugin = "com.matthewprenger.cursegradle")

Using the plugins DSL:

plugins {
  id "com.matthewprenger.cursegradle" version "1.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.matthewprenger:CurseGradle:1.4.0"
  }
}

apply plugin: "com.matthewprenger.cursegradle"

Learn how to apply plugins to subprojects