mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2024-12-15 04:41:37 +08:00
bf8c2e77e8
* Fix Paperweight build error and remove 1.19.4/1.20.0 support * Remove extra version-specific data
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven {
|
|
name = "EngineHub"
|
|
url = uri("https://maven.enginehub.org/repo/")
|
|
}
|
|
}
|
|
}
|
|
plugins {
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
|
|
}
|
|
|
|
logger.lifecycle("""
|
|
*******************************************
|
|
You are building WorldEdit!
|
|
|
|
If you encounter trouble:
|
|
1) Read COMPILING.md if you haven't yet
|
|
2) Try running 'build' in a separate Gradle run
|
|
3) Use gradlew and not gradle
|
|
4) If you still need help, ask on Discord! https://discord.gg/enginehub
|
|
|
|
Output files will be in [subproject]/build/libs
|
|
*******************************************
|
|
""")
|
|
|
|
rootProject.name = "worldedit"
|
|
|
|
includeBuild("build-logic")
|
|
|
|
include("worldedit-libs")
|
|
|
|
listOf("1.20.2", "1.20.4", "1.20.5").forEach {
|
|
include("worldedit-bukkit:adapters:adapter-$it")
|
|
}
|
|
|
|
listOf("bukkit", "core", "fabric", "neoforge", "cli").forEach {
|
|
include("worldedit-libs:$it")
|
|
include("worldedit-$it")
|
|
}
|
|
include("worldedit-mod")
|
|
include("worldedit-libs:core:ap")
|
|
|
|
include("worldedit-core:doctools")
|
|
|
|
include("verification")
|