Say, I have the following tasks: ``` tasks { v...
# gradle
d
Say, I have the following tasks:
Copy code
tasks {
    val needsToRunFirst by creating {
        doLast { println("This thingy needs to run first") }
    }

    val sayHello by creating {
        description = "A sample that shows how to create tasks in Kotlin!"
        group = "samples"
        dependsOn("needsToRunFirst")
        doLast { println("Hello from Kotlin!") }
    }
}