short: I need to filter all java Files and every META-INF Folder from a set of jars and package the class files and resources into one single jar. I currently use the maven assembly plugin, but am fully willing to try something else as long as it can easily be integrated into a maven build process.
long: I use maven to manage different stages of development for my tool (basic stage is freeware, second has some more features, third stage is all features). That works fine so far, I use profiles to add the different source directories to the classpath and the sources are neatly compiled into the project jar. - Here is the first problem: The .java sources included into the project via the profiles end up in the project jar. Then I use the maven assembly plugin to construct a single jar and in the end use launch4j to produce an executable for windows (the current target platform). - Here is the second problem: The various META-INF parts from the dependency jars mix in the final jar and I would want them all to be skipped.
I have searched for examples of the assembly.xml using the exclude tag, but did not find any that used my combination of dependencySet and *.java (I'm not even positive that I can do that...).
Here is my assembly.xml: http://pastebin.com/dGwRMUBK
My research so far: I have googled with "example assembly.xml exclude java" but could not find examples that covered my problem. (I have also googled a lot the past days but did not save all I found) I have read http://maven.apache.org/plugins/maven-assembly-plugin/advanced-descriptor-topics.html but could not apply that knowledge to my problem.
So, thanks a lot in advance if you can point me to the right direction. As said before, I am fully willing to use something different than the assembly plugin if it solves the problem :) If I can't find the answer I will most likely begin to write my own after-build shellscript to do what I want, but I would prefer not to.
Have a lot of fun
Angelo