Search Gradle plugins

Version 1.5.3

Created 04 March 2023.

Gradle plugin for developing Paper derivatives

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects