We have a multi module maven project with the following layout
project - common (contains DTOs and other utils) - business (containes business services) - presentation (presentation related)
Now, we have a webservice exposed from business module and we have to give a jar file with just service interface (from 'business' module) and DTOs (from 'common' module) to a dependent application which wants to consume the web service.
What is the best way to produce this artifact using maven?