well yes that does get the file set of files i need, unfortunatley it does not
get interperted by the following :

<javac excludes="${test}" srcdir="${src}/${package}" destdir="${built}"
classpath="${external.classpath}" />

because the values in ${test} need to be , (thats a comma) sepreated as opposed
to ; sepearted as i stated in my original request..  why the excludes= statement
of javac requires a comma seperated list as opposed to a ; or : seperated list
is beyond me..  So i guess im back to square one.. does anyone know a way to get
a COMMA sepearted list of files from a fileset?

Nico Seessle wrote:

> ----- Original Message -----
> From: "Son of Mojo JoJo" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, April 18, 2001 7:56 PM
> Subject: Assinging file sets to a property
>
> > Im trying to figure out how you would take a file set, and assign it to a
> > property that is a comma seperated list of files for use as an excludes
> variable
> > of the compiler target.
> >
>
> Does
>
> <?xml version="1.0"?>
> <project name="test" default="compile" basedir=".">
>
>   <path id="myfiles">
>     <fileset dir="D:\Temp">
>       <include name="*.java"/>
>     </fileset>
>   </path>
>
>   <target name="compile">
>
>     <property name="test" refid="myfiles"/>
>
>     <echo message="myfiles: ${test}"/>
>   </target>
> </project>
>
> work for you?
>
> Nico

--
-Raphael
[EMAIL PROTECTED]
******************
ook ook im a monkeeeey wheeeeeeee!
             ********************


Reply via email to