2019-08-26 06:45:03 +02:00
|
|
|
rootProject.name = "FastAsyncWorldEdit"
|
|
|
|
|
|
|
|
include("worldedit-libs")
|
|
|
|
|
2022-06-10 23:22:06 +02:00
|
|
|
listOf("legacy", "1_17_1", "1_18_2", "1_19").forEach {
|
|
|
|
include("worldedit-bukkit:adapters:adapter-$it")
|
|
|
|
}
|
2021-10-17 16:32:36 +02:00
|
|
|
|
2021-03-26 14:24:26 +01:00
|
|
|
listOf("bukkit", "core", "cli").forEach {
|
2019-08-26 06:45:03 +02:00
|
|
|
include("worldedit-libs:$it")
|
|
|
|
include("worldedit-$it")
|
|
|
|
}
|
|
|
|
include("worldedit-libs:core:ap")
|
2021-01-18 21:58:50 +01:00
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
2021-01-21 13:34:33 +01:00
|
|
|
name = "EngineHub"
|
2021-01-18 21:58:50 +01:00
|
|
|
url = uri("https://maven.enginehub.org/repo/")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-08-01 19:28:51 +02:00
|
|
|
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|