io.papermc.paperweight.patcher
Owner: PaperMC
Gradle plugin for developing Paper derivatives
https://github.com/PaperMC/paperweight
Sources: https://github.com/PaperMC/paperweight
Version 1.7.5 (latest)
1.7.5
Created 18 November 2024.
Gradle plugin for developing Paper derivatives
Using the plugins DSL:
plugins {
id("io.papermc.paperweight.patcher") version "1.7.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.papermc.paperweight:paperweight-patcher:1.7.5")
}
}
apply(plugin = "io.papermc.paperweight.patcher")
Using the plugins DSL:
plugins {
id "io.papermc.paperweight.patcher" version "1.7.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.papermc.paperweight:paperweight-patcher:1.7.5"
}
}
apply plugin: "io.papermc.paperweight.patcher"