xyz.jpenilla.run-paper
Owner: Jason Penilla
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)
2.3.1
Created 18 August 2024.
Gradle plugin adding a task to run a Paper Minecraft server
Using the plugins DSL:
plugins {
id("xyz.jpenilla.run-paper") version "2.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("xyz.jpenilla:run-task:2.3.1")
}
}
apply(plugin = "xyz.jpenilla.run-paper")
Using the plugins DSL:
plugins {
id "xyz.jpenilla.run-paper" version "2.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "xyz.jpenilla:run-task:2.3.1"
}
}
apply plugin: "xyz.jpenilla.run-paper"