Problem Description
When you created the MAVEN project using Eclipse, the following error occurred:
Description Resource path Location Type build
path Specifies execution environment. There are no JREs installed in the workspace of that are strictly and this compatible. Springbasic build path JRE System Library Problem
Solution
The reason is that the Java build path path for the MAVEN build is not set:
Effect Chart:
Ultimate Solution
Because the above error may still occur after you update project in Maven, you can add Plug-ins in the Pom.xml file:
<build>
<plugins>
<plugin>
<groupid>org.apache.maven.plugins</groupid >
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source >1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
Reference "Faceted Project Prblem (Java Version mismatch)" error message