so in fileset you can do:
<copy todir="${deploy.home)/classes">
<fileset dir="build" />
</copy>
but you can not seemingly do:
<copy todir="${deploy.home)/classes">
<fileset dir="$(build.home)" />
</copy>
where:
<property name="deploy.home" value="../foo/bar/baz" />
<property name="build.home" value="../../foo/bar/baz" />
instead of getting the value of the property you get:
BUILD FAILED
<path>(build.home) not found
this is a bug right?
if the fileset can't take a variable as the value to the dir
attribute then you are hard coding locations in your buildfile. BAD BAD BAD
msew
- batching of ant task John . D . Casey
- Newbie question : Can I target with argument ? Jean-Guillaume LALANNE
- Re: batching of ant task Stefan Bodewig
- Re: batching of ant task David Rees
- Re: batching of ant task Stefan Bodewig
- Re: fileset msew
- Re: fileset Stefan Bodewig
- Re: fileset Peter Donald
- Re: fileset Peter Davison
- Re: batching of ant task David Rees
- RE: Re: batching of ant task John . D . Casey
- Re: batching of ant task Stefan Bodewig
- RE: Re: batching of ant task John . D . Casey
- RE: Re: batching of ant task John . D . Casey
- Re: batching of ant task Stefan Bodewig
- RE: Re: batching of ant task John . D . Casey
