Hello Raja,
with presetdef it is possible to feed default attributes and default nested
elements to tasks. Does it work for types too ?
here a try :
<project name="doit">
<presetdef name="fileset">
<fileset casesensitive="false"/>
</presetdef>
<mkdir dir="ABC"/>
<touch file="ABC/dummy.txt"/>
<fileset dir="." includes="abc/*" id="myfileset"/>
<echo>${toString:myfileset}
</echo>
</project>
and here is the output :
Buildfile: doit.xml
Trying to override old definition of datatype fileset
[mkdir] Created dir: c:\dev\ABC
[touch] Creating c:\dev\ABC\dummy.txt
[echo] ABC\dummy.txt
BUILD SUCCESSFUL
Total time: 0 seconds
So it looks like some of what you want to achieve can be done using presetdef.
What I do not know, you would need to try, is whether this works for all usages
of fileset. For instance filesets which are nested inside the <javac/> task do
define sources to compile ... Not sure.
Regards,
Antoine
-------- Original-Nachricht --------
> Datum: Thu, 22 Oct 2009 06:35:47 -0700 (PDT)
> Von: Raja Nagendra Kumar <[email protected]>
> An: [email protected]
> Betreff: global setttings for fileset to be case insenstive
>
> Hi,
>
> Is it possible to make fileset casesenstive="no" by default.
> This should be globally true for all the fileset where ever it is used.
> Like the default excludes, does it have default cases senstive settings.
> Quick code look at fileset says no..
>
> Regards,
> Nagendra
> www.tejasoft.com
>
>
> --
> View this message in context:
> http://www.nabble.com/global-setttings-for-fileset-to-be-case-insenstive-tp26010023p26010023.html
> Sent from the Ant - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]