I used dependecySet to solve this problem and as walsmatt mentioned correctly, we can use wildcard to add all binaries.
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> <id>bin</id> <includeBaseDirectory>false</includeBaseDirectory> <formats> <format>zip</format> </formats> <dependencySets> <dependencySet> <includes> <include>groupA:*:*:*</include> </includes> </dependencySet> </dependencySets> </assembly> This will add all binary artifacts of project. Posting here in case if anybody runs into similar kind of issue, this might help. Thanks walshmatt. -- View this message in context: http://maven.40175.n5.nabble.com/Maven-Assembly-plugin-Multi-module-project-source-and-javadoc-not-getting-added-to-zip-file-tp5708932p5709447.html Sent from the Maven - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
