Run Example 15.6. Accessing tasks by path in the user guide
project(':projectA') {
task hello
}
task hello
println tasks.getByPath('hello').path
println tasks.getByPath(':hello').path
println tasks.getByPath('projectA:hello').path
println tasks.getByPath(':projectA:hello').path
got this “Project with path ‘projectA’ could not be found in root project ‘projectA’” ,is there any conversion must observe?