简体   繁体   English

我可以在哪个Maven存储库中找到Eclipse RCP 3.6 Jars?

[英]In which maven repo can I find Eclipse RCP 3.6 Jars?

We have an Eclipse RCP application based on Eclipse 3.6. 我们有一个基于Eclipse 3.6的Eclipse RCP应用程序。 Recently our builds have started to fail (local repository of CI agent was probably deleted for some reason), as certain Eclipse dependencies cannot be found in the maven repository. 最近,我们的构建开始失败(CI代理的本地存储库可能由于某种原因被删除了),因为在maven存储库中找不到某些Eclipse依赖项。

I can't seem to find them anywhere on the web. 我似乎无法在网络上的任何地方找到它们。 Can anyone point me to a maven repository where these artifacts can be found? 谁能指出我可以在其中找到这些工件的Maven存储库?

Here's an extract from our pom.xml 这是我们pom.xml的摘录

<dependency>
    <groupId>org.eclipse</groupId>
    <artifactId>org.eclipse.core.commands</artifactId>
    <version>3.6.0.I20100512-1500</version>
    <scope>compile</scope>
</dependency>
<dependency>
    <groupId>org.eclipse</groupId>
    <artifactId>org.eclipse.core.runtime</artifactId>
    <version>3.6.0.v20100505</version>
    <scope>compile</scope>
</dependency>

These artifacts can be found in Maven central. 这些工件可以在Maven Central中找到。 Our Nexus repository is showing them in a search, but the version number for org.eclipse.core.commands just 3.6.0 . 我们的Nexus存储库正在搜索中显示它们,但是org.eclipse.core.commands的版本号仅为3.6.0 In both cases, they have a different group ID. 在这两种情况下,它们都有不同的组ID。

Try this ( look here ): 试试这个( 看这里 ):

<dependency>
  <groupId>org.eclipse.core</groupId>
  <artifactId>org.eclipse.core.commands</artifactId>
  <version>3.6.0</version>
</dependency>

and this ( look here ): 这( 看这里 ):

<dependency>
  <groupId>org.eclipse.core</groupId>
  <artifactId>org.eclipse.core.runtime</artifactId>
  <version>3.6.0.v20100505</version>
</dependency>

Sometimes these things just get moved around in Maven Central....and then your Nexus rebuild indices and poof - they're gone. 有时,这些东西只是在Maven Central中移动了。...然后您的Nexus重建索引和伪造的东西就消失了。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM