10 lines
205 B
Kotlin
10 lines
205 B
Kotlin
plugins {
|
|
id("cloud.parent-build-logic")
|
|
id("com.github.ben-manes.versions")
|
|
}
|
|
|
|
subprojects {
|
|
if (!name.startsWith("example-")) {
|
|
apply(plugin = "cloud.publishing-conventions")
|
|
}
|
|
}
|