Hi,
I’m trying to add a custom attribute to MANIFEST.MF in an ear file like below using Gradle 6.5.
plugins {
id “ear”
}
ear {
.
.
.
manifest {
attributes 'Build-Time': '2020-06-16T12:03:49Z'
}
}
I get an ear file but the MANIFEST.MF file does not contain my custom attribute.
I think this it’s a bug. Please help.
Regards,
Chris