2012-02-21 102 views
2

可能重複:
Which maven2 artifacts are necessary to build a WS with CXF and Spring?如何獲得CXF罐子常春藤

我使用的是ivy.xml文件,以獲得依賴我所需要的。所以爲了獲得一些依賴性,我寫了

<dependency org="org.hibernate" name="hibernate-entitymanager" rev="3.6.6.Final"> 
    <artifact name="hibernate-entitymanager" type="jar" /> 
</dependency>. 

當CXF搜索the Maven Central Repository,我發現下面的Ivy依賴信息:

<dependency org="org.apache.cxf" name="cxf" rev="2.5.2" > 
    <artifact name="cxf" type="pom" /> 
</dependency> 

這種依賴有pom,而不是jar類型。我怎樣才能用常春藤罐裝CXF?

回答

3

拆分爲several JAR。我不知道,但你可能需要分別導入它們,例如:

<dependency org="org.apache.cxf" name="cxf" rev="2.5.2"/> 
<dependency org="org.apache.cxf" name="cxf-rt-frontend-jaxws" rev="2.5.2"/> 
+0

我猜我的問題是http://stackoverflow.com/questions/3969268/which-maven2-artifacts的副本-are-必要到構建-A-WS-與-CXF-和彈簧 – ipavlic 2012-02-21 14:24:09