欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

maven 关于Dynamic Web Module 3.0 requires Java 1.6 or newer的问题

程序员文章站 2022-06-18 16:50:40
...

明明JDK版本已经是1.8,可还是报这个错误,

检查.seting 文件中配置文件,没问题,都是1.8

检查POM.xml 也是1.8

干脆在pom.xml <plugins>标签添加如下:

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.4</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>

然后右键项目maven-->update

搞定。