in src/main/groovy/com/epam/atg/gradle/build/utils/ManifestUtils.groovy [139:152]
static String getDescription(Manifest manifest) {
Attributes mainAttributes = manifest.mainAttributes
String atgProductFull = mainAttributes.getValue(MANIFEST_ATTRIBUTE_ATG_PRODUCT_FULL)
String atgProduct = mainAttributes.getValue(MANIFEST_ATTRIBUTE_ATG_PRODUCT)
String projectDescriptionOverride = null
if (atgProduct && atgProductFull) {
projectDescriptionOverride = "$atgProduct - $atgProductFull"
} else if (atgProductFull) {
projectDescriptionOverride = atgProductFull
} else if (atgProduct) {
projectDescriptionOverride = atgProduct
}
return projectDescriptionOverride
}