如何使用leiningen下载openimaj库的依赖项

时间:2013-04-29 11:28:12

标签: clojure leiningen

我正在尝试使用以下指定的存储库:

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.

还有其他办法吗?

1 个答案:

答案 0 :(得分:1)

看起来你有错误的依赖?

他们使用模块化方法,因此您拥有不同的依赖关系核心,图像,视频,数学等。

您可以尝试包含所需的模块吗?

[org.openimaj/core "1.0.5"]

http://sourceforge.net/p/openimaj/wiki/OpenIMAJ%20Library/提供的文档包含更多详细信息。

查看存储库,他们有org.openimaj / openimaj目录,所以你应该有用。