You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by "Siberski, Wolf" <Wo...@tui.de> on 2000/09/20 11:42:43 UTC

Whitespaces in include/exclude patterns

How can I add an include pattern containing
whitespaces? The whitespace is used as
delimiter in PatternSet.setIncludes(), and
there seems no escape char mechanism in
place.

Wolf

Re: Whitespaces in include/exclude patterns

Posted by Stefan Bodewig <bo...@bost.de>.
>>>>> "SW" == Siberski, Wolf <Wo...@tui.de> writes:

 SW> How can I add an include pattern containing whitespaces?

Should work with nested include tags

<task includes="all your other patterns if you want to keep it that way">
  <include name="pattern with spaces" />
</task>

Stefan