Hi,

I used the following assembly descriptor to create an assembly directory
with my project's jar and all the jars that are it's dependencies:

<assembly>
        <id>distribution</id>
        <formats>
                <format>dir</format>
        </formats>
        <includeBaseDirectory>false</includeBaseDirectory>
        <fileSets>
                <fileSet>
                        <directory>target</directory>
                        <outputDirectory></outputDirectory>
                        <includes>
                                <include>*.jar</include>
                        </includes>
                </fileSet>
        </fileSets>
        <dependencySets>
                <dependencySet>
                        <outputDirectory>/lib</outputDirectory>
                        <unpack>false</unpack>
                        <scope>runtime</scope>
                </dependencySet>
        </dependencySets>
</assembly>


However, all the jars that are copied inside lib/ had the version
numbers attached to them. Is there a way to filter out these version
numbers and just have the jars. 

Also, if I want to create this assembly directory at a location outside
this projects's target directory, where do I specify that path.


Thanks and Regards,
Venkat

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to