2024-02-18 11:28:02 +08:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
maven {
|
|
|
|
name = "Fabric"
|
|
|
|
url = uri("https://maven.fabricmc.net/")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-01-22 06:29:02 +08:00
|
|
|
plugins {
|
|
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
|
|
|
|
}
|
|
|
|
|
2019-07-11 02:07:00 +08:00
|
|
|
rootProject.name = "worldedit"
|
|
|
|
|
|
|
|
include("worldedit-libs")
|
|
|
|
|
2024-03-26 19:11:14 +08:00
|
|
|
listOf("1.18.2", "1.19.4", "1.20", "1.20.2", "1.20.4").forEach {
|
2022-06-10 08:21:11 +08:00
|
|
|
include("worldedit-bukkit:adapters:adapter-$it")
|
|
|
|
}
|
2021-10-02 12:11:29 +08:00
|
|
|
|
2021-06-14 02:32:38 +08:00
|
|
|
listOf("bukkit", "core", "sponge", "fabric", "forge", "cli").forEach {
|
2019-07-11 02:07:00 +08:00
|
|
|
include("worldedit-libs:$it")
|
|
|
|
include("worldedit-$it")
|
|
|
|
}
|
2021-01-25 18:14:09 +08:00
|
|
|
include("worldedit-mod")
|
2019-07-11 02:07:00 +08:00
|
|
|
include("worldedit-libs:core:ap")
|
|
|
|
|
|
|
|
include("worldedit-core:doctools")
|
2022-06-07 08:11:41 +08:00
|
|
|
|
|
|
|
include("verification")
|