【发布时间】:2014-01-24 20:03:32
【问题描述】:
我正在创建一些 OSGI 模块,其中包含许多需要来自 p2 存储库的依赖项的插件和功能...
- 我用tycho和artifactory
- 为了满足这些依赖,我添加了 Kepler repo,(tycho can't resolve dependencies from local repo)...
我的主要 pom.xml:
<repository>
<layout>p2</layout>
<id>kepler</id>
<url>http://download.eclipse.org/releases/kepler</url>
</repository>
和其他神器本地仓库
<repository>
<id>central</id>
<url>{server.addr}/libs-release </url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
.......
一切似乎都很好,除了这个错误:
Caused by: java.lang.RuntimeException: No solution found because the problem is unsatisfiable.: [Unable to satisfy dependency from xx.xx.xx.xxx.xxx to bundle org.eclipse.jet 1.1.1.; No solution found because the problem is unsatisfiable.] ???
如何找到这个依赖:org.eclipse.jet ???为什么在 Kepler p2 中找不到第谷?
【问题讨论】: