Search Gradle plugins

xyz.jpenilla.run-paper

Gradle plugin adding a task to run a Paper Minecraft server

https://github.com/jpenilla/run-task

Sources: https://github.com/jpenilla/run-paper

Version 2.3.1 (latest)

Created 18 August 2024.

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 "2.3.1"
}

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:2.3.1")
    }
    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:2.3.1")
      }
    }
    
    apply(plugin = "xyz.jpenilla.run-paper")
  • Applying plugins to all subprojects .