mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-01 10:27:11 +00:00
a353c12df0
* 1.20.6 Signed-off-by: Alexander Brandes <mc.cache@web.de> * work Signed-off-by: Alexander Brandes <mc.cache@web.de> * More work Signed-off-by: Alexander Brandes <mc.cache@web.de> * chore: address more removed fields and methods, make it run * chore: don't allocate unnecessary arrays (by maps) * chore: the comment might still be noteworthy * chore: no need to synchronize twice * fix obfuscation changes * remove unneeded deprecation * make regen work without throwing exceptions - but slow * fix: error when adapting BaseItemStacks without nbt * fix annoying paper api breakage --------- Signed-off-by: Alexander Brandes <mc.cache@web.de> Co-authored-by: Alexander Brandes <mc.cache@web.de> Co-authored-by: Pierre Maurice Schwang <mail@pschwang.eu>
22 lines
560 B
Plaintext
22 lines
560 B
Plaintext
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
kotlin("jvm") version "1.9.23"
|
|
application
|
|
}
|
|
|
|
applyCommonConfiguration()
|
|
|
|
application.mainClass.set("com.sk89q.worldedit.internal.util.DocumentationPrinter")
|
|
tasks.named<JavaExec>("run") {
|
|
workingDir = rootProject.projectDir
|
|
}
|
|
|
|
dependencies {
|
|
"implementation"(project(":worldedit-libs:core:ap"))
|
|
"implementation"(project(":worldedit-core"))
|
|
"implementation"(kotlin("stdlib-jdk8"))
|
|
"implementation"(kotlin("reflect"))
|
|
"implementation"("com.google.guava:guava")
|
|
}
|