在使用IDEA2015配置pom.xml时version信息行会标记红线,原因时Maven版本选择问题,在我将Maven版本更换成系统自带的Bundled (Maven 3)后报错就没有了。
<dependencies>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.2.0.RELEASE</version>
</dependency>
</dependencies>