On Wed, 3 Oct 2001 09:47, you wrote: > At 11:32 AM 10/3/2001 +1200, you wrote: > >At 16:25 2/10/2001 -0700, Scott Ellsworth wrote: > >>Assume I want all java files in org.metagraph.cluster and > >>org.metagraph.model and below: > >> > >><property name="includedFiles" > >>value="org/metagraph/cluster/**.java,org/metagraph/model/**.java"/> > > > >Try this instead: > > > ><property name="includedFiles" > >value="org/metagraph/cluster/**/*.java,org/metagraph/model/**/*.java"/> > > Interesting - will that include .java files in org.metagraph.cluster, or > only those .java files below org.metagraph.cluster?
when you do **/*.java that will include all java files under that directory and and the sub directories. /victor
