0

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

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"]])

但是当我做 a 时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.

还有另一种方法吗?

4

1 回答 1

1

看起来你有错误的依赖关系?

他们使用模块化的方法,所以你有不同的依赖核心、图像、视频、数学等。

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

[org.openimaj/core "1.0.5"]

http://sourceforge.net/p/openimaj/wiki/OpenIMAJ%20Library/上的文档有更多详细信息。

环顾存储库,他们确实有 org.openimaj/openimaj 目录,所以你所拥有的应该可以工作。

于 2013-04-29T12:03:50.150 回答