in src/main/groovy/com/epam/atg/gradle/utils/ProjectUtils.groovy [65:72]
static Project findAtgRootProjectForModule(String moduleName, Project anyProject) {
for(Map.Entry<String, String> entry : getAtgRootProjectsPathsWithModulesNames(anyProject)) {
if(moduleName.startsWith(entry.value)) {
return anyProject.project(entry.key)
}
}
return null
}