The ConversionServiceAdapter generated by ConversionServiceAdapterGenerator contains a "date" value in its @Generated annotation, despite mapstruct.suppressGeneratorTimestamp=true being configured:
@Generated(
value = "org.mapstruct.extensions.spring.converter.ConversionServiceAdapterGenerator",
date = "2023-07-05T15:30:39.534896439Z"
)
@Component
public class ConversionServiceAdapter {
// ...
}
It would be nice if mapstruct-spring-extensions would support this setting (or add a simular one) just like mapstruct does and render without the date attribute:
@Generated(
value = "org.mapstruct.extensions.spring.converter.ConversionServiceAdapterGenerator"
)
@Component
public class ConversionServiceAdapter {
// ...
}
I'm mainly thinking "reproducible builds"/"optimizing caching" here, so it would be nice that if my code didn't change, the generated output would stay the same. 🙂