0

我正在尝试将 WSDL 模块添加到我现有的应用程序中,但我正在努力解决依赖关系。

根据他们的网站,这是正确的依赖

<dependency>
<groupId>org.ow2.easywsdl</groupId>
<artifactId>easywsdl-wsdl</artifactId>
<version>2.1</version>
</dependency>

经过搜索(search.maven.org),我已经将版本更改为 2.3,并且有一堆文件下载到我的本地存储库中,但是在运行应用程序(使用网站演示代码)时,我碰到了这个错误:

java.lang.ClassNotFoundException: com.ebmwebsourcing.easycommons.uri.UriManager

我相信这与丢失的工件有关:

com.ebmwebsourcing.easycommons:easycommons.uri:jar:1.1
com.ebmwebsourcing.easycommons:easycommons.logger:jar:1.1

特别是第一个。现在,我对使用 Maven 比较陌生……我将如何解决这个问题?

谢谢。

4

1 回答 1

1

解决方案是添加petalslink存储库。显然,标准的 maven 存储库不包含 easycommons 依赖项。花瓣链接存储库可以。

于 2012-12-12T14:56:41.613 回答