0 votes
in Gradle by
Consider the following gradle build script:

task a{

ext.myProperty = "Hello"

}

task b{

doLast {

println a.myProperty

println c.myProperty

}}

task c(dependsOn: b){

ext.myProperty = "Hey"

println "Hi"}

If the task gradle -q c is run, what is the output?

1 Answer

0 votes
by
hi Hello hey
...