mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2025-02-16 19:51:35 +01:00
Bungee support is half broken due to not having the same injection points as Velocity and has become less and less stable with every update. The Sponge plugin has been almost entirely unused
30 lines
745 B
Plaintext
30 lines
745 B
Plaintext
plugins {
|
|
base
|
|
id("via.build-logic")
|
|
}
|
|
|
|
allprojects {
|
|
group = "com.viaversion"
|
|
version = property("projectVersion") as String // from gradle.properties
|
|
description = "Allow newer clients to join older server versions."
|
|
}
|
|
|
|
val main = setOf(
|
|
projects.viaversion,
|
|
projects.viaversionCommon,
|
|
projects.viaversionApi,
|
|
projects.viaversionBukkit,
|
|
projects.viaversionVelocity,
|
|
projects.viaversionFabric
|
|
).map { it.dependencyProject }
|
|
|
|
// val special = setOf().map { it.dependencyProject }
|
|
|
|
subprojects {
|
|
when (this) {
|
|
in main -> plugins.apply("via.shadow-conventions")
|
|
// in special -> plugins.apply("via.base-conventions")
|
|
else -> plugins.apply("via.standard-conventions")
|
|
}
|
|
}
|