Maven assembly interaction -
i have 3 projects , core, client , utility, both core , client depended on utility. goal create 2 assemblies following...
first one: core-assembly | |---- core.jar |---- utility.jar |---- client.jar second one: noaction-assembly | |---- xml , properties files
i want separate configurations code base , store them in assembly people need modify configurations in noaction-assembly , leave core-assembly untouched. there ways can achieve that? thank you!
core assembly, if contains jars, doesn't need assembly. there dependencies element in noaction assembly pulls in jars you.
you have maven project each of jars; each of project/builds produce it's respective jar. single assembly project, no action, reference jars via "dependencies" element of assembly descriptor.
Comments
Post a Comment