We have an ant build script which contains this bit:
<target name="test">
  <antcall target="iterate-projects">
    <param name="test-depends" value="false" /> 
    <param name="target" value="test" />
  </antcall>
</target>
I'd like to skip testing some of our projects, since they are very large and contain 3rd party tests. Something like
if (library.name().startsWith("lucene"))
  continue
How would I implement this in ant?