using the following command
mvn eclipse:eclipse
i can get a .classpath with the line such as:
<classpathentry kind="src" path="src/main/java" including="**/*.java"/>
but this is not the configuration i want, i want it to be
<classpathentry kind="src" path="src/main/java" including="**/*.*"/>
that means it should be including="/."** and not including="/.*jave"
why i should do in order to customize maven to generate the .classpath that i want?