我正在尝试在Windows上的Nuxeo Platform 10.10上安装Nuxeo Vision 1.3.4。
在为nuxeo / nuxeo-vision构建GitHub存储库时。我遇到一些依赖性错误。
GitHub存储库:https://github.com/nuxeo/nuxeo-vision
git clone https://github.com/nuxeo/nuxeo-vision
cd nuxeo-vision
mvn clean install
以下是关于cmd的错误。
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for Nuxeo Vision Parent 1.4.0-SNAPSHOT:
[INFO]
[INFO] Nuxeo Vision Parent ................................ SUCCESS [ 17.657 s]
[INFO] Nuxeo Vision Core .................................. SUCCESS [09:13 min]
[INFO] Nuxeo Vision Google ................................ SUCCESS [ 40.278 s]
[INFO] Nuxeo Vision AWS Rekognition ....................... SUCCESS [ 38.375 s]
[INFO] Nuxeo Vision Package ............................... FAILURE [10:55 min]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 22:06 min
[INFO] Finished at: 2019-07-05T09:41:37+05:30
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project nuxeo-vision-marketplace: Could
not resolve dependencies for project org.nuxeo:nuxeo-vision-marketplace:zip:1.4.0-SNAPSHOT: Could
not find artifact org.nuxeo.marketplace.dam:
marketplace:zip:nxr-server:6.5.0-SNAPSHOT in public-snapshot
(http://maven.nuxeo.org/nexus/content/groups/public-snapshot) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[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 read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
DependencyResolutionException
当Maven无法下载依赖项时,通常会发生此错误。导致此错误的可能原因是:
$ {user.home} /。m2 / settings.xml:
<server>
<id>hotfix-snapshots</id>
<username>user-name</username>
<password>password</password>
</server>
<server>
<id>hotfix-releases</id>
<username>user-name</username>
<password>password</password>
</server>
<server>
<id>nuxeo-studio</id>
<username>user-name</username>
<password>password</password>
</server>
</servers>
Maven版本:
Maven home: C:\opt\apache-maven-3.6.1\bin\..
Java version: 11.0.3, vendor: Oracle Corporation, runtime: C:\Program Files\Java\jdk-11.0.3
Default locale: en_US, platform encoding: Cp1252
OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"
但是我不确定在哪里进行更改以及如何解决此问题。 谁能帮我这个? 预先感谢。