mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-01 02:17:11 +00:00
28 lines
487 B
Plaintext
28 lines
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-20220414.034903-210")
|
|
compileOnly(libs.paperlib)
|
|
}
|