2024-07-02 14:47:57 +02:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
plugins {
|
|
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.lifecycle("""
|
|
|
|
*******************************************
|
|
|
|
You are building WorldGuard!
|
|
|
|
|
|
|
|
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
|
|
|
|
*******************************************
|
|
|
|
""")
|
|
|
|
|
2019-07-30 05:25:13 +02:00
|
|
|
rootProject.name = "worldguard"
|
|
|
|
|
2024-07-02 14:47:57 +02:00
|
|
|
includeBuild("build-logic")
|
|
|
|
|
2019-07-30 05:25:13 +02:00
|
|
|
include("worldguard-libs")
|
|
|
|
include("worldguard-libs:core")
|
2024-07-02 14:47:57 +02:00
|
|
|
|
|
|
|
listOf("bukkit", "core").forEach {
|
|
|
|
include("worldguard-$it")
|
|
|
|
}
|