I have a maven (3.0.4) multi-module build project which works on command line perfect.
mvn clean package
build successful.
I've tried to import that project into Eclipse

with m2e 1.0.

but after it's ready i can't see a package folder nor the icon for src-folders (like src/main/java etc).

But i would have expected to see something like the following:

Does someone has a hint what problem might be? Or ideas where to look for?
Update
After boiling this down it might be caused by using a Java 1.7. compiler which i have configurate like the following:
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<executable>C:/Programme/Java/jdk1.7.0_05/bin/javac</executable>
<fork>true</fork>
</configuration>
</plugin>
...
Someone with experience in this area?
Update Project Configuration? If didn't help, paste yourpom.xml. – Michal Kalinowski Jul 4 '12 at 8:03<packaging>and<build>sections. – Michal Kalinowski Jul 4 '12 at 8:24