You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Atluri Satish <at...@gmail.com> on 2004/10/11 14:30:37 UTC

Re: Dependent jars in distribution zip file

The solution is written all over the place (Maven User Guide).
<project default="release" xmlns:j="jelly:core" xmlns:u="jelly:util"
xmlns:ant="jelly:ant" xmlns:maven="jelly:maven" xmlns:deploy="deploy">

	<goal name="copydependencies">
		<echo>Copying Dependent Jars</echo>
		<mkdir dir="${maven.build.dir}/lib/" />
		<deploy:copy-deps todir="${maven.build.dir}/lib/" />
	</goal>

</project>

bye
Satish
On Mon, 20 Sep 2004 16:25:26 +0530, Atluri Satish
<at...@gmail.com> wrote:
> Hi
> 
> I want to include dependent jar (Specified in Project.xml file) into
> my distribution zip. I also want to exercise finer control in terms of
> specifying what dependent jars are to be included in distribution zip
> files.
> 
> I request your help in letting me know, how to do it.
> 
> bye
> Satish
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org