Hi Vijay, If you have your zip assembly installed in the repository, you can include the first assembly in another assembly. First of all, in the pom which will create the second assembly, you must declare your first zip assembly as a dependency.Then, in your assembly descriptor, you have to include this dependency within a <dependencySets> section. This tag enables the inclusion of all the dependencies declared in your pom. I think that's the default behavior. So you will probably have to exclude the other dependencies declared in your pom. Check out http://maven.apache.org/plugins/maven-assembly-plugin/component.html#class_dependencySetfor information on how to configure the <dependencySets> section.
Regards, Julien Simon.
