0

I would like to know what the difference is between the following in an build.xml file if any, as to me it seems like they do the same thing:

1.

<fileset dir="${source}">
    <include name="**/*.java"/>
</fileset>

2.

<fileset dir="${source}">
    <filename name="**/*.java"/>
</fileset>

Thanks.

Jason Posit
  • 1,323
  • 1
  • 16
  • 36

1 Answers1

0

There is no difference. Both filesets will include the same files.

Nicolas Lalevée
  • 2,014
  • 1
  • 15
  • 14