Are there any conventions on the order of the parameters in the @Mapping annotations?
The mapstruct documentation is not consistent here.
Examples:
@Mapping(target = "label", source = "designation")
@Mapping(source = "make", target = "manufacturer")
The intellij plugin puts target first.
So I'm a bit confused, I think it would be nice to have a convention (and want to help with updating the docs if people think it is useful).