最近在做selenium的升级工作,使用jdk 11.0.20 +maven 3.9.6,Pom 配置如下:
<dependencies>
? ??<dependency>
??????? <groupId>org.seleniumhq.selenium</groupId>
??????? <artifactId>selenium-java</artifactId>
??????? <version>4.16.1</version>
??????? <scope>test</scope>
??? </dependency>
??? <dependency>
??????? <groupId>io.github.bonigarcia</groupId>
??????? <artifactId>webdrivermanager</artifactId>
??????? <version>5.6.2</version>
??????? <scope>test</scope>
??? </dependency>
??? <dependency>
??????? <groupId>junit</groupId>
??????? <artifactId>junit</artifactId>
??????? <version>4.13.2</version>
??????? <scope>test</scope>
??? </dependency>
</dependencies>
然后发现了一个非常诡异的问题,错误信息如下:
修复方式非常简单
去掉pom中的 <scope>test</scope> 行即可
然后再用mvn test命令执行即可!
继续探索
作为一个测试人员,很敏感的意识到,这非常可能是jdk11 与maven不兼容产生的bug,因为之前用jdk8从来没出现过相关的问题。
继续搞事情,去掉pom中的 <scope>test</scope> 行 然后,重新加上<scope>test</scope> 行,执行mvn test居然可以执行,但是执行 maven test之前的生命周期命令,例如clean,问题又会复现(此处不是百分百复现)
为了严谨,切换到jdk1.8,做了同样的操作,问题没有复现!!!
jdk 11.0.20 +maven 3.9.6,当pom.xml 里包括标签<scope>test</scope> 时,构建会出现bug,为了避免麻烦,建议大家在pom.xml中去掉该标签!
我的每一篇文章都希望帮助读者解决实际工作中遇到的问题!如果文章帮到了您,劳烦点赞、收藏、转发!您的鼓励是我不断更新文章最大的动力!