I can see by section 3.3 of the documentation (Mapping methods with several source parameters) that you can map multiple source parameters to a single target, but I don't understand what mapping annotation you would use to specify this. For the example method:
DeliveryAddressDto personAndAddressToDeliveryAddressDto(Person person, Address address);
...what mapping annotation would you use to result in the above method being called? I would expect you would need something like the following (but this is not correct):
@Mapping(source = "{person,address}", target = "deliveryAddress")