I have a composite build.
In the root directory there is projectA
(includedBuild)
|--projectA
|--subprojectA
| |--src (with precompiled script)
| \--build.gradle.kts
|--gradle.properties
\--settings.gradle.kts
When I run gradle :projectA:tasks
I see that there is a check
task.
But gradle :projectA:check
turns out
Cannot locate tasks that match ':projectA:check' as task 'check' not found in project ':projectA'.
Why I can’t execute gradle :projectA:check
?