mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-19 10:25:00 +00:00
18 lines
430 B
Plaintext
18 lines
430 B
Plaintext
|
import io.papermc.paperweight.userdev.PaperweightUserDependenciesExtension
|
||
|
|
||
|
plugins {
|
||
|
java
|
||
|
}
|
||
|
|
||
|
applyPaperweightAdapterConfiguration()
|
||
|
|
||
|
repositories {
|
||
|
gradlePluginPortal()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
// https://repo.papermc.io/service/rest/repository/browse/maven-public/io/papermc/paper/dev-bundle/
|
||
|
the<PaperweightUserDependenciesExtension>().paperDevBundle("1.20.2-R0.1-20230929.031919-14")
|
||
|
compileOnly(libs.paperlib)
|
||
|
}
|