allprojects {
    task hello {
        doLast { task ->
            println "I'm $task.project.name"
        }
    }
}
