xyz.jpenilla.run-paper
CC-compatible
Owner:
Jason Penilla
Gradle plugin adding a task to run a Paper Minecraft server
Version 3.1.0 (latest)
Created 08 August 2026.
Gradle plugin adding a task to run a Paper Minecraft server
Add this plugin to your build using the plugins DSL:
plugins {
id("xyz.jpenilla.run-paper") version "3.1.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("xyz.jpenilla.run-paper:xyz.jpenilla.run-paper.gradle.plugin:3.1.0") }It can then be applied in the precompiled script plugin:plugins { id("xyz.jpenilla.run-paper") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("xyz.jpenilla.run-paper:xyz.jpenilla.run-paper.gradle.plugin:3.1.0") } } apply(plugin = "xyz.jpenilla.run-paper") - Applying plugins to all subprojects .