In the changelog for 1.0-RC it says `Container Str...
# gradle
i
In the changelog for 1.0-RC it says
Container String invoke now is register() instead of maybeCreate()
, however, with this script:
Copy code
tasks {
    "xyz"
}
executing
gradle xyz
will print
Copy code
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.