0

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?

pjanssen
  • 1,065
  • 13
  • 35
thinke365
  • 1,305
  • 3
  • 14
  • 22
  • Just curious. Why would you want to include non-java files in src? – Raghuram Sep 16 '12 at 06:36
  • I suppose this question is related another one you previously asked [here](http://stackoverflow.com/questions/12444683/why-xml-files-in-eclipse-projects-source-directory-is-not-copied-to-target-clas/12446666#12446666), see my answer in the other question. – yorkw Sep 16 '12 at 11:59
  • @Raghuram it is configuration files, which is needed by project – thinke365 Sep 18 '12 at 03:52

0 Answers0