in src/main/groovy/com/epam/esp/vcs/VcsConfig.groovy [43:49]
String getPath(String project) {
String path = projectPathMap.getOrDefault(project.toLowerCase(), projectPathMap.get(DEFAULT_PATH))
if (path == null) {
throw new GitException("Path to repository must not be null")
}
return path
}