【发布时间】:2012-03-11 15:32:12
【问题描述】:
可能重复:
Which maven2 artifacts are necessary to build a WS with CXF and Spring?
我正在使用ivy.xml 文件来获取我需要的依赖项。所以为了获得一些依赖,我写了例如
<dependency org="org.hibernate" name="hibernate-entitymanager" rev="3.6.6.Final">
<artifact name="hibernate-entitymanager" type="jar" />
</dependency>.
在the Maven Central Repository搜索CXF时,发现如下Ivy依赖信息:
<dependency org="org.apache.cxf" name="cxf" rev="2.5.2" >
<artifact name="cxf" type="pom" />
</dependency>
该依赖项的类型为 pom 而不是 jar。如何使用 Ivy 获得 CXF 的罐子?
【问题讨论】:
标签: cxf ivy dependency-management