Joona I Palaste wrote:
> Alain Laroche <> scribbled the following:
>>Why are two '*' needed,as a single star already matches any number of
>>characters? Is there a difference with <include name="*/*.java"/>?
>
> It's a special trick. "**" isn't parsed as two '*', it's a special token
> on its own right, meaning "every subdirectory inside this directory, no
> matter how deep in the directory tree".
And a single * _doesn't_ match just any arbitrary sequence of
characters. In particular, it doesn't match anything that involves
traversing a subdirectory as part of the match.
John Bollinger