oblak/build.gradle.kts
2021-12-18 04:14:25 -08:00

17 lines
404 B
Kotlin

plugins {
id("cloud.parent-build-logic")
id("com.github.ben-manes.versions")
}
group = "cloud.commandframework"
version = "1.6.1"
description = "Command framework and dispatcher for the JVM"
subprojects {
if (name != "cloud-bom") {
apply(plugin = "cloud.base-conventions")
}
if (!name.startsWith("example-")) {
apply(plugin = "cloud.publishing-conventions")
}
}