Search Gradle plugins

Version 1.5.15 (latest)

Created 11 April 2024.

Gradle plugin for developing Paper derivatives

Using the plugins DSL:

plugins {
  id("io.papermc.paperweight.patcher") version "1.5.15"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.papermc.paperweight:paperweight-patcher:1.5.15")
  }
}

apply(plugin = "io.papermc.paperweight.patcher")

Using the plugins DSL:

plugins {
  id "io.papermc.paperweight.patcher" version "1.5.15"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.papermc.paperweight:paperweight-patcher:1.5.15"
  }
}

apply plugin: "io.papermc.paperweight.patcher"

Learn how to apply plugins to subprojects