Search Gradle plugins

io.papermc.paperweight.userdev

Owner: PaperMC

Gradle plugin for developing Paper plugins using server internals

https://github.com/PaperMC/paperweight

Sources: https://github.com/PaperMC/paperweight

Version 1.7.3

1.7.3

Created 28 September 2024.

Gradle plugin for developing Paper plugins using server internals

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.papermc.paperweight.userdev") version "1.7.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.papermc.paperweight:paperweight-userdev:1.7.3")
      }
    }
    
    apply(plugin = "io.papermc.paperweight.userdev")
  • Applying plugins to all subprojects .