在pom.xml文件中增加下面内容
<build>
<plugins>
<!-- define the project compile level -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
*其中的1.8是本机安装的JDK的版本,请与你自己安装的JDK版本相对应。
然后再更新maven项目就可以了。