mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
41 lines
No EOL
1 KiB
Text
41 lines
No EOL
1 KiB
Text
plugins {
|
|
`java-library`
|
|
// Ensure AP works in eclipse (no effect on other IDEs)
|
|
eclipse
|
|
id("geyser.build-logic")
|
|
alias(libs.plugins.lombok) apply false
|
|
}
|
|
|
|
allprojects {
|
|
group = properties["group"] as String + "." + properties["id"] as String
|
|
version = properties["version"] as String
|
|
description = properties["description"] as String
|
|
}
|
|
|
|
val basePlatforms = setOf(
|
|
projects.bungeecord,
|
|
projects.spigot,
|
|
projects.standalone,
|
|
projects.velocity,
|
|
projects.viaproxy
|
|
).map { it.dependencyProject }
|
|
|
|
val moddedPlatforms = setOf(
|
|
projects.fabric,
|
|
projects.neoforge,
|
|
projects.mod
|
|
).map { it.dependencyProject }
|
|
|
|
subprojects {
|
|
apply {
|
|
plugin("java-library")
|
|
plugin("io.freefair.lombok")
|
|
plugin("geyser.build-logic")
|
|
}
|
|
|
|
when (this) {
|
|
in basePlatforms -> plugins.apply("geyser.platform-conventions")
|
|
in moddedPlatforms -> plugins.apply("geyser.modded-conventions")
|
|
else -> plugins.apply("geyser.base-conventions")
|
|
}
|
|
} |