Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-06 03:20:06 +01:00
2e1a8f9665
* Compile with target java 21, remove unsupported MC versions * update bug report template
26 Zeilen
572 B
Plaintext
26 Zeilen
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")
|