The following code is a Gradle script written in Kotlin DSL…
The following code is a Gradle script written in Kotlin DSL that creates a customized task : val hello by tasks.register(“hello”){ group =”custom” description = “greetings” doLast{ println(“Hello Gradle!!”) }} What is the category name this task belongs to? _____________