Hi all, Gradle has support for projects and sub-projects, but does that support go more levels deep? Can you create a project that contains sub-projects that contain sub-sub-projects?
I am inclined to think the answer is 'no', because in such a structure I run into problems: the sub-sub-projects use the java plugin (the sub-projects and the (top) project do not) and the top project has "defaultTasks 'build'" in its build.gradle, but I get a "org.gradle.execution.TaskSelectionException: Task 'build' not found in root project (...)" when trying to build the top project. cheers, --L
