ikej
08/17/2018, 9:03 AMContainer String invoke now is register() instead of maybeCreate()
, however, with this script:
tasks {
"xyz"
}
executing gradle xyz
will print
Task with name 'xyz' not found in root project 'test'.
What am I missing? This used to work before 1.0-RC and looking in the source I see that String invoke in the task container will call container.named(this)
which does not register the task but just finds an existing one.