maven - Modifying existing modules with archetype update -
i have project designed using custom archetype build modules under parent project follows -
details - archetype implements <configuration> in <build> phase <mainclass> let's generator builds classes under pojos , service packages single target folder , hence enabling create final jar user module user-1.0.0.jar
there's requirement in terms of separately exposing pojos without intervention of service code has left me brainstorming -
- is there way modify existing archetype or module structure 2 separate jars packages
pojos,serviceuser-pojos-1.0.0.jar,user-service-1.0.0.jar?
one way possibly know move code in 2 different module , building jars multiple existing modules under parent , thought on same name modules under parent, wouldn't preferable.
- is there way modify obtained
user-1.0.0.jarcreated , separate out 2 jars required same above?

Comments
Post a Comment