In the following Ant script, what does it mean **/*?
**/*
<fileset dir="${server.src}" casesensitive="yes"> <include name="**/*.java"/> </fileset>
** means any level of subdirectory
**
i.e. a/x.java, a/b/y.java, a/b/c/z.javaEtc.
a/x.java
a/b/y.java
a/b/c/z.java