Great! that is exactly what i was looking for. Thanks!
Is there anyting like that to work on a tar.gz file? zip is just for
winzip/gnuzip/jar/war/ear right?
Now the next step to figure out what to take out of the distrib files.
ex: dom4j has a lib and a lib/tool dir
the goal is to only take out the dom4j specific jars
and get the rest, like jaxen, from the jaxen
jaxen distribution but here is no way to separate
them since they are all in the same directory
any advice?
=================================================================
= Management is doing things right; leadership is doing the =
= right things. - Peter Drucker =
=_______________________________________________________________=
= http://www.sun.com/service/sunps/jdc/javacenter.pdf =
= www.sun.com | www.javasoft.com | http://www.sun.com/sunone =
=================================================================
Antoine Levy-Lambert wrote:
> Hi Hanasaki,
>
> yes, this is possible with a nested zipfileset.
>
> <war destfile="my.war">
> <zipfileset src="foo/bar/your.war">
> <include name="**/*.jar"/>
> </zipfileset>
> </war>
> this will copy into my.war the jars which are nested in foo/bar/your.war.
> The jars coming from your.war will have the same path inside my.war than
> in your.war
>
> <war destfile="my.war">
> <zipfileset src="foo/bar/your.war" prefix="lib">
> <include name="**/*.jar"/>
> </zipfileset>
> </war>
> this will copy into my.war the jars which are nested in foo/bar/your.war.
> The jars coming from your.war will have the path lib/path.in.your.war.
>
> (the lib nested element of the war task is actually a nested zipfileset).
>
>
> Hopes this helps,
>
> Antoine
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org
|