新建一个maven,遇到错误如下:
Description Resource Path Location Type Dynamic Web Module 3.0 requires Java
这时候,只需要在pom.xml添加插件依赖即可:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin>
然后保存,maven update当前工程,问题解决了