mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-14 16:33:33 +00:00
41d294e73b
* chore: add support for 1.21.1 * chore: remove old chunk system references in 1.21 adapter (paper) * chore: re-word exception message
18 lines
454 B
Plaintext
18 lines
454 B
Plaintext
import io.papermc.paperweight.userdev.PaperweightUserDependenciesExtension
|
|
|
|
plugins {
|
|
java
|
|
}
|
|
|
|
applyPaperweightAdapterConfiguration()
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
dependencies {
|
|
// url=https://repo.papermc.io/service/rest/repository/browse/maven-public/io/papermc/paper/dev-bundle/1.21.1-R0.1-SNAPSHOT/
|
|
the<PaperweightUserDependenciesExtension>().paperDevBundle("1.21.1-R0.1-20240810.223713-4")
|
|
compileOnly(libs.paperlib)
|
|
}
|