extract jar dependency from war

2012-11-04 Thread adrien ruffie
Hello all, in my company a project is build into a war, but several java package are build into jars,themselves finally stored into previous war. The war is a versionned artifact, but no its jars that contains, knowing I can not separatebuilded jars into independant module, do you know a method

Re: extract jar dependency from war

2012-11-04 Thread Benson Margulies
You could use: - the maven-dependency-plugin to unpack the war into target/ someplace. - the build-helper-maven-plugin to attach some jars as artifacts. However, the jars would have to have coordinates of the form G/A/V/C, where G/A/V come from the pom in which you do all this, and all you pick