1 回答

TA貢獻(xiàn)1898條經(jīng)驗(yàn) 獲得超8個(gè)贊
好的,我找到了答案!問題是 pom.xml 中的錯(cuò)誤依賴項(xiàng)!
錯(cuò)誤的是:
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-arquillian-container-managed</artifactId>
<version>8.2.1.Final</version>
<scope>test</scope>
</dependency>
正確的是:
<dependency>
<groupId>org.wildfly.arquillian</groupId>
<artifactId>wildfly-arquillian-container-managed</artifactId>
<version>2.1.1.Final</version>
<scope>test</scope>
</dependency>
我剛剛在谷歌上搜索了“wildfly-arquillian-container-management”并使用了最高版本號。但這一次,較高的數(shù)字是較舊的狀態(tài),可能與 Wildfly 8.2.1 同步,但不再與 Wildfly 15 或更高版本一起使用。
添加回答
舉報(bào)