Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse showing package name including directory structure

Tags:

eclipse

maven

I have my source in the hierarchy:

folder: src/main/java package: com.test.serviceImpl

Now eclipse is showing this as src.main.java.com.test.serviceImpl

How can I make it display only com.test.serviceImpl under the directory structure : src/main/java

Note: This is a maven project module imported to eclise. All other modules display properly

like image 886
sab Avatar asked Jul 01 '11 15:07

sab


1 Answers

If you use m2eclipse and your pom is configured properly, just right-click the project and select Maven > Update Project Configuration.

If that doesn't work, study the Eclipse Maven Console (in the Console view) for errors.

like image 162
Sean Patrick Floyd Avatar answered Sep 23 '22 10:09

Sean Patrick Floyd