return (ProjectMetadata) metadataService.get(ProjectMetadata
.getProjectIdentifier(moduleName));
}
public String getProjectName(final String moduleName) {
final Pom pom = getPomFromModuleName(moduleName);
Validate.notNull(pom, "A pom with module name '%s' could not be found",
moduleName);
return pom.getDisplayName();
}