Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
currently if a "*" is used as for example in
load ${groovy.home}/lib/*.jar
the starter code will look for a .jar file in any subdirectory of ${groovy.home}/lib. This causes match IO activity and will cause higher startup times. If I want to extend my search to subdirectories in Ant, then I use the "**" expression. Projected to our configuration file this means it would look like this
load ${groovy.home}/lib/**/*.jar
With this the user has better control over if he wants to match a subdirectory as well or not.