I need to produce an artifact from Maven module, which will contain only *Foo.class files from ./target/classes. It has to be a proper artifact that can be used later as a normal dependency for another project. It means that it has to contain its own pom.xml. I tried maven-dependency-plugin and maven-shade-plugin to no avail:
maven-dependency-plugindoesn't generatepom.xml, but only copies files into JAR - this is not enough for a Maven dependencymaven-shade-plugindoesn't allow to pick files by mask, and besides that it unpacks all dependencies into target artifact (which is not what I need).
What is a possible workaround?
include/excludein shade plugin is used to filter content of module dependencies, not content of the module itself. – yegor256 Dec 5 '11 at 8:21pom.xmlof this artifact the same as that of themodule? – Raghuram Dec 5 '11 at 8:27pom.xmlto have all dependencies from the module incompilescope, no matter what scope they had before. – yegor256 Dec 5 '11 at 8:35