So I saw this line in the .classpath file(eclipse file) today
<classpathentry kind="src" path="src/main/java" including="**/*.java"/>
I know *.java
means any java file, but what does that **/
before it do? Does it mean to include every subfolder under src/main/java
?