我试图为我的WSO2 ESB类和代理集成测试用例。
我正在关注WSO2网站的一个例子,它显示在链接
中https://docs.wso2.com/display/TA430/Writing+a+Test+Case+for+ESB
有一个扩展ESBIntegrationTest
(org.wso2.carbon.esb.ESBIntegrationTest)
的测试类。据我所知,我们需要添加依赖maven:
<dependency>
<groupId>org.wso2.esb</groupId>
<artifactId>org.wso2.carbon.esb.common</artifactId>
<version>4.8.0</version>
</dependency>
添加后,pom.xml会抛出错误
Missing artifact org.wso2.esb:org.wso2.carbon.esb.common:jar:4.8.0
那么这个错误的解决方案是什么?