geforkt von Mirrors/FastAsyncWorldEdit
345785a25e
* feat: Preliminary work for 1.18.2 * Update SpigotNames to 1.18.2 (#1642) * 1.18.2 / Biome-Holders, regeneration (#1645) * 1.18.2 / Biome-Holders, regeneration * fix: reuse old structure sets * build: Update dev bundles * fix: Don't log regen world generation * fix: Run DataConverter with CBT * fix: Override `#toNativeBinary` * fix: Exception on regen Co-Authored-By: Pierre Maurice Schwang <mail@pschwang.eu> * refactor: Minor cleanup Co-authored-by: Aurora <21148213+aurorasmiles@users.noreply.github.com> Co-authored-by: Pierre Maurice Schwang <mail@pschwang.eu>
28 Zeilen
487 B
Plaintext
28 Zeilen
487 B
Plaintext
applyPaperweightAdapterConfiguration()
|
|
|
|
plugins {
|
|
java
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
name = "PaperMC"
|
|
url = uri("https://papermc.io/repo/repository/maven-public/")
|
|
}
|
|
}
|
|
|
|
java {
|
|
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
|
|
configurations.all {
|
|
attributes.attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 17)
|
|
}
|
|
|
|
|
|
dependencies {
|
|
paperDevBundle("1.17.1-R0.1-20220220.213420-208")
|
|
compileOnly(libs.paperlib)
|
|
}
|