15 lines
358 B
Kotlin
15 lines
358 B
Kotlin
plugins {
|
|
id("cloud.parent-build-logic")
|
|
id("com.github.ben-manes.versions")
|
|
}
|
|
|
|
group = "cloud.commandframework"
|
|
version = "1.6.0-SNAPSHOT"
|
|
description = "Command framework and dispatcher for the JVM"
|
|
|
|
subprojects {
|
|
plugins.apply("cloud.base-conventions")
|
|
if (!name.startsWith("example-")) {
|
|
plugins.apply("cloud.publishing")
|
|
}
|
|
}
|