Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When i create a new Maven project in Eclipse, directory structure contains both src/main/java and src/main (down below)

Question: I understand my code should fall under src/main/java, what is the purpose of the src/main? Why does Eclipse create it?

enter image description here

share|improve this question
3  
How do you expect the src/main/java to exist without the src/main – Manoj May 23 '11 at 15:09
Eclipse made it confusing .. one of "source folder", another is "folder" – Jam May 23 '11 at 15:16

3 Answers

up vote 5 down vote accepted

For src/main/java to exist src/main/ must first exist so eclipse just shows you all the folders in your project including src/main/

If you want to remove them from your view in package explorer, you can create a filter for the package explorer view and exclude Non-Java elements.

Look for the down arrow in the top right of the package explorer view for the filters option.

share|improve this answer
Ok. Got it now. Was kind of weird to see "source folder" and "folders" with the same names, as Eclipse showed it – Jam May 23 '11 at 15:18
@mac Ye I can see you it causes confusion alright. – Paul Whelan May 23 '11 at 15:35

src/main/java is Maven's standard layout for placement of your Java source codes.

Check http://java.sg/maven-standard-directory-layout/ for a list of standard Maven directories.

src/main/java       Application/Library sources
src/main/resources  Application/Library resources
src/main/filters    Resource filter files
src/main/assembly   Assembly descriptors
src/main/config     Configuration files
src/main/webapp     Web application sources
src/test/java       Test sources
src/test/resources  Test resources
src/test/filters    Test resource filter files
src/site        Site
LICENSE.txt     Project's license
NOTICE.txt      Notices and attributions required by libraries that the project depends on
README.txt      Project's readme
share|improve this answer

You can have other sub-directories under src/main that are not source files. If you see Maven documentation you need to have resource files under src/main/resources. Obviously the parent directory src/main needs to be created to create child directories.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.