Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- plugins {
- id("xyz.jpenilla.run-paper") version "2.3.1"
- }
- tasks {
- jar {
- enabled = false
- }
- build {
- dependsOn("shadowJar")
- }
- var version = "1.21.4"
- var plugins = runPaper.downloadPluginsSpec {
- url("https://github.com/ViaVersion/ViaVersion/releases/download/5.3.2/ViaVersion-5.3.1.jar")
- url("https://github.com/ViaVersion/ViaBackwards/releases/download/5.3.2/ViaBackwards-5.3.1.jar")
- }
- runServer {
- minecraftVersion(version)
- runDirectory = file("run/paper/$version")
- downloadPlugins {
- from(plugins)
- }
- }
- runPaper.folia.registerTask() {
- minecraftVersion(version)
- runDirectory = file("run/folia/$version")
- downloadPlugins {
- from(plugins)
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement