English 中文(简体)
增加依赖性休息项目
原标题:adding dependency breaks maven project

当我加上org.apache.hbase作为对我项目的一种依赖时,它造成失败,造成另一种依赖。

[ERROR] 在依附解决下列物品时发生错误:

com.sun.jersey:jersey-分:1.4

来源:无法获得依赖信息: 无法读到关于人工切除的元数据:jersey-分:jar : 不能找到父母:妇女项目项目:无:妇女:无 无

com.sun.jersey:jersey-core:jar:1.4

我确信,这两人有着某种共同的母子;我如何解决这个问题,更广泛地说,我如何能够在今后制止这一错误?

EDIT:

Another dependency uses jersey-core:1.7; is there a way I can use both versions ? Can I force the hbase artifact to use the newer (1.7) version ?

问题回答

也许会把这一镜子添加到环境中。

<mirror>
    <id>glassfish-mirror</id>
    <name>glassfish mirror</name>
    <url>http://maven.nuxeo.org/nexus/content/repositories/public-releases</url>
    <mirrorOf>glassfish-repository</mirrorOf>
</mirror>




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签