a single star () matches zero or more characters in the path name. a double star (**) matches zero or more characters in the directory levels. Another way to think about it is with a double star (**) slash (/) matches, but single star () does not.
So let's say I have these classes:
1. src/test.java 2. test/src/test.java
Well */*.java matches 1 only where as **/*.java matches as because ** matches any number of levels
source share