Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-02 17:40:09 +01:00
e7876c4eba
* Towards 1.20 * Init bukkit * Update YAML to 2.0 * Fixes for 1.20 adapters * Update obfuscated field names * Remove getHandle workaround * entityManager is obfuscated * Update paperweight * [ci-skip] Add 1.20 to modrinth task --------- Co-authored-by: Phillipp Glanz <p.glanz@madfix.me> Co-authored-by: SirYwell <hannesgreule@outlook.de>
26 Zeilen
599 B
Plaintext
26 Zeilen
599 B
Plaintext
rootProject.name = "FastAsyncWorldEdit"
|
|
|
|
include("worldedit-libs")
|
|
|
|
listOf("legacy", "1_17_1", "1_18_2", "1_19", "1_19_3","1_19_4", "1_20").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")
|