我正在尝试使用在以下内容中指定的存储库:
http://sourceforge.net/p/openimaj/wiki/OpenIMAJ%20Library/
元数据在这里:http://maven.ecs.soton.ac.uk/content/groups/maven.openimaj.org/org/openimaj/openimaj/maven-metadata.xml
定义了项目:
(defproject imaj "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:repositories [["openimaj" "http://maven.openimaj.org"]]
:dependencies [[org.clojure/clojure "1.5.1"]
[org.openimaj/openimaj "1.1"]])但是当我执行lein deps时,我得到了以下错误:
Could not find artifact openimaj:openimaj:jar:1.1 in openimaj (http://maven.openimaj.org)
This could be due to a typo in :dependencies or network issues.有没有别的办法呢?
发布于 2013-04-29 20:03:50
看起来你有错误的依赖关系?
他们使用模块化的方法,所以你有不同的依赖核心,图像,视频,数学等。
你可以尝试包含你需要的模块吗?
[org.openimaj/core "1.0.5"]http://sourceforge.net/p/openimaj/wiki/OpenIMAJ%20Library/上提供的文档提供了更多详细信息。
环顾一下存储库,他们确实有org.openimaj/openimaj目录,所以您所拥有的目录应该可以工作。
https://stackoverflow.com/questions/16277513
复制相似问题