18 lines
302 B
Kotlin
18 lines
302 B
Kotlin
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)
|
|
}
|
|
}
|
|
}
|