友情提示!使用JDK11,如果 maven包含 <scope>test</scope>标签,构建时会出现严重错误

最近在做selenium的升级工作,使用jdk 11.0.20 +maven 3.9.6,Pom 配置如下:

maven构建报错

<dependencies>
    <
dependency>
        <
groupId>org.seleniumhq.seleniumgroupId>
        <
artifactId>selenium-javaartifactId>
        <
version>4.16.1version>
        <
scope>testscope>
    dependency>

    <
dependency>
        <
groupId>io.github.bonigarciagroupId>
        <
artifactId>webdrivermanagerartifactId>
        <
version>5.6.2version>
        <
scope>testscope>
    dependency>

    <
dependency>
        <
groupId>junitgroupId>
        <
artifactId>junitartifactId>
        <
version>4.13.2version>
        <
scope>testscope>
    dependency>
dependencies>

然后发现了一个非常诡异的问题,错误信息如下:

友情提示!使用JDK11,如果 maven包含 <scope>test</scope>标签,构建时会出现严重错误_第1张图片

修复方法

修复方式非常简单

去掉pom中的 <scope>testscope> 行即可
然后再用mvn test命令执行即可!

继续探索

作为一个测试人员,很敏感的意识到,这非常可能是jdk11 与maven不兼容产生的bug,因为之前用jdk8从来没出现过相关的问题。

继续搞事情,去掉pom中的 <scope>testscope> 然后,重新加上<scope>testscope> 行,执行mvn test居然可以执行,但是执行 maven test之前的生命周期命令,例如clean,问题又会复现(此处不是百分百复现)

友情提示!使用JDK11,如果 maven包含 <scope>test</scope>标签,构建时会出现严重错误_第2张图片

为了严谨,切换到jdk1.8,做了同样的操作,问题没有复现!!!

总结

jdk 11.0.20 +maven 3.9.6,当pom.xml 里包括标签<scope>testscope> 时,构建会出现bug,为了避免麻烦,建议大家在pom.xml中去掉该标签!

我的每一篇文章都希望帮助读者解决实际工作中遇到的问题!如果文章帮到了您,劳烦点赞、收藏、转发!您的鼓励是我不断更新文章最大的动力!

你可能感兴趣的:(Java,测试开发,自动化测试,maven,java)