依赖关系仅在我的mac机器上解决,而不是在同一项目的Windows机器上解析

时间:2014-07-26 20:20:51

标签: maven intellij-idea

当我在我的mac机器上使用IntelliJ Idea时,我有几个依赖项可以解决但是由于某些奇怪的原因,当我在我的Windows机器上再次使用IntelliJ Idea运行相同项目时,它们无法解析。

以下是两个依赖项:

<dependencies>
        <dependency>
            <groupId>com.opengamma.platform</groupId>
            <artifactId>og-client</artifactId>
            <version>2.1.0</version>
            <type>pom</type>
        </dependency>
        <dependency>
            <groupId>com.opengamma.platform</groupId>
            <artifactId>og-server</artifactId>
            <version>2.1.0</version>
            <type>pom</type>
        </dependency>
    </dependencies>

我甚至尝试在Windows机器上的项目目录中运行mvn clean install,并且构建因此错误而停止:

[WARNING] The POM for com.opengamma.platform:og-client:pom:2.1.0 is missing, no
dependency information available
Downloading: http://repo.maven.apache.org/maven2/com/opengamma/platform/og-serve
r/2.1.0/og-server-2.1.0.pom
[WARNING] The POM for com.opengamma.platform:og-server:pom:2.1.0 is missing, no
dependency information available
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.611 s
[INFO] Finished at: 2014-07-26T22:03:08+02:00
[INFO] Final Memory: 8M/115M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project Project3: Could not resolve dependenci
es for project com.skiabox.apps:Project3:jar:1.0-SNAPSHOT: The following artifac
ts could not be resolved: com.opengamma.platform:og-client:pom:2.1.0, com.openga
mma.platform:og-server:pom:2.1.0: Failure to find com.opengamma.platform:og-clie
nt:pom:2.1.0 in http://repo.maven.apache.org/maven2 was cached in the local repo
sitory, resolution will not be reattempted until the update interval of central
has elapsed or updates are forced -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e swit
ch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please rea
d the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyReso
lutionException

1 个答案:

答案 0 :(得分:0)

在我看来,您正在寻找

中的OG依赖项

但是,OpenGamma目前还没有将它们的依赖项放在那里。相反,试试看这里:

我将此添加到我的顶级pom.xml

<repositories>
    <repository>
        <id>maven-opengamma</id>
        <name>Public online OpenGamma repository</name>
        <url>http://maven.opengamma.com/nexus/content/groups/public/</url>
    </repository>
</repositories>

希望这有帮助。

埃里克