mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-17 01:26:10 +00:00
18 lines
435 B
Plaintext
18 lines
435 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-R0.1-20230609.070122-4")
|
||
|
compileOnly("io.papermc:paperlib")
|
||
|
}
|