I have developed a WebApp (that i'll call W)used in conjunction with 3 different applications (A,B and C).
W needs different dependencies based on which application it is used in conjunction with(for example different versions of Oracle Coherence).
At the moment I use 3 maven projects with the exact same code (the code from W) with different configuration files and different dependencies.
I would like to be able to generate my 3 wars without having 3 times the very same code (the code from W) in 3 different projects.
Is it possible?Is it possible with maven? Thanks in advance.