Search Gradle plugins

Version 1.0.3

Created 04 October 2015.

Gradle plugin to upload artifacts to CurseForge

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.matthewprenger.cursegradle"

Learn how to apply plugins to subprojects