mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-01 02:17:11 +00:00
2e1a8f9665
* Compile with target java 21, remove unsupported MC versions * update bug report template
26 lines
572 B
Plaintext
26 lines
572 B
Plaintext
rootProject.name = "FastAsyncWorldEdit"
|
|
|
|
include("worldedit-libs")
|
|
|
|
listOf("1_20_2", "1_20_4", "1_20_5", "1_21").forEach {
|
|
include("worldedit-bukkit:adapters:adapter-$it")
|
|
}
|
|
|
|
listOf("bukkit", "core", "cli").forEach {
|
|
include("worldedit-libs:$it")
|
|
include("worldedit-$it")
|
|
}
|
|
include("worldedit-libs:core:ap")
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
name = "EngineHub"
|
|
url = uri("https://maven.enginehub.org/repo/")
|
|
}
|
|
}
|
|
}
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|