add common, common-build, common-ktlint, common-detekt, and common-project

This commit is contained in:
2025-09-09 09:46:31 +02:00
parent 3b39aa69bc
commit bd4ce51d63
8 changed files with 160 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
plugins {
id("ltd.lulz.plugin.core-plugin")
}
tasks {
named("build") {
dependsOn("buildInfo")
}
register("buildInfo") {
group = "lulz"
description = "Prints the project name and version"
doLast {
println(info.nameVersion)
}
}
}