在maven中解决oltu openid连接依赖性

时间:2014-05-07 08:53:26

标签: eclipse apache maven pom.xml oltu

这不是一个问题,而是我想分享的oltu openid connect的简单maven依赖解决方案。我发现它可能对其他人有帮助,因为网上没有太多关于它的资源。

我在maven(pom)中遇到了oltu openid连接依赖的问题。不知何故,我发现了它的groupid,工件及其版本。但每当我在pom中插入依赖项时,eclipse会通知我丢失的工件。问题似乎如下:enter image description here

2 个答案:

答案 0 :(得分:0)

问题如上所述,依赖在maven中央存储库中不可用。当我在网上搜索时,我发现这些依赖项托管在http://repository.idega.com/maven2/的其他存储库中。之后,解决方案只是将此存储库包含在您的pom中,如下所示:

enter image description here

答案 1 :(得分:0)

尝试使用Apache Snapshot Repository:

<repositories>
    <repository>
      <id>apache.snapshots</id>
      <name>Apache Snapshot Repository</name>
      <url>https://repository.apache.org/snapshots</url>
      <releases>
        <enabled>false</enabled>
      </releases>
    </repository>
  </repositories>