Dynamic Web Module 3.0 requires Java 1.6 or newer
新建 maven 工程, Marker 出现这个问题
在 porm.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.7</source> <target>1.7</target> </configuration> </plugin> </plugins> </build>
再用 maven update project, 解决报错。