public static NbGradleProjectTree createTree(String name, NbGradleProjectTree... children) {
String fullName = ":app:" + name;
GenericProjectProperties properties = createProperties(name, fullName);
List<GradleTaskID> tasks = Arrays.asList(new GradleTaskID("run", fullName + ":run"));
return new NbGradleProjectTree(properties, tasks, Arrays.asList(children));
}