mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-01 18:37:11 +00:00
ea6bbecc32
* fix: editorconfig file selectors * chore/ci: add renovate checks for paperweight-userdev
18 lines
455 B
Plaintext
18 lines
455 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.20.2-R0.1-SNAPSHOT
|
|
the<PaperweightUserDependenciesExtension>().paperDevBundle("1.20.2-R0.1-20231203.034718-121")
|
|
compileOnly(libs.paperlib)
|
|
}
|