我正在尝试使用名为DragonConsole的java库(jar文件),该文件不在maven central或clojars上。
我想在我的clojure应用程序中导入这个库,但到目前为止我无法弄清楚如何这样做。
我尝试设置当地的maven回购,但我认为我做得不对。
lein deps
给了我这个错误:
(Retrieving dragonconsole/dragonconsole/3.0.0/dragonconsole-3.0.0.pom from local)
(Could not transfer artifact dragonconsole:dragonconsole:pom:3.0.0 from/to local)
(file:/home/michael/clj/enclojed/maven_repository/): no supported algorithms found)
project.clj:
:dependencies [[org.clojure/clojure "1.6.0"]
[clojure-lanterna "0.9.4"]
[dragonconsole "3.0.0"]]
:repositories [["local" {:url ~(str (.toURI (java.io.File. "maven_repository")))}]]
项目文件夹:
maven_repository/DragonConsolev3.jar
maven_repository/dragonconsole/dragonconsole/maven-metadata-local.xml
maven_repository/dragonconsole/dragonconsole/3.0.0/dragonconsole-3.0.0.pom
doc/...
src/...
test/...
resources/...
project.clj
如果您需要查看其他任何文件,请check the git page。
答案 0 :(得分:5)
这可能是最简单的方法。你有一个〜/ .m2目录吗?
1)在project.clj
中添加您的依赖关系,例如:dependencies [[dragonconsole "3.0.0"]]
当你运行lein run/test/etc
时,它将尝试从maven central和clojars中提取库,它将在〜/ .m2下为你创建一个路径,例如~/.m2/repository/dragonconsole/dragonconsole/3.0.0/
注意:如果存在具有相同名称和版本的库,只需删除下载的内容(jar,pom等等)
2)在〜/ .m2的dragonconsole目录下创建一个指向jar 的符号链接,例如ln -s /path/to/project/dragonconsole-3.0.0.jar ~/.m2/repository/dragonconsole/...
这次运行lein run/test/etc
时,它会起作用。这是我发现的最简单,最干净的方法,尽管我没有太多时间去探索。我喜欢它,因为你的代码和构建过程不会发生任何变化(只需要一行来添加依赖项)。
对于制作我会寻找一种方法来添加一个lein存储库“source”,所以它看起来是我的自定义repo,然后是maven central,然后是clojars。
答案 1 :(得分:1)
这是一个简单明了的描述:
https://www.pgrs.net/2011/10/30/using-local-jars-with-leiningen/
我认为最好的解决方案是评论:
- 使用deploy替换安装
醇>
mvn deploy:deploy-file -Dfile=jnotify-0.94.jar -DartifactId=jnotify -Dversion=0.94 -DgroupId=jnotify -Dpackaging=jar -Durl=file:/home/xxx/maven_repository/
- 将repo添加到project.clj
醇>
:repositories {“local” “file:/home/xxx/maven_repository”}
答案 2 :(得分:0)
免责声明:此答案详细说明了如何使用leiningen将本地jar作为依赖项安装,但我还没有尝试使用本机java jar。但是,方向应该完全相同;你应该只能通过互操作形式使用库,就lein而言,你只是安装另一个jar文件。
在lein 2中,导入jar的唯一方法是使用maven存储库,因此您需要创建一个本地maven存储库。我使用以下命令安装jar文件。这些命令是UNIX,但它们捕获的想法应该适用于任何带有java / maven的操作系统。
首先,我为本地存储库创建一个目录:
mkdir -p ${HOME}/.local/var/lein_repo
然后我使用此命令将jar文件安装到存储库中:
mvn deploy:deploy-file \
-Dfile=${name}-${version}.jar \
-DartifactId=${name} \
-Dversion=${version} \
-DgroupId=${name} \
-Dpackaging=jar \
-Durl=file:/home/djhaskin987/.local/var/lein_repo
最后,我将此行添加到我当地的lein文件中:
:repositories {"local" ~(str (.toURI (java.io.File. "/home/djhaskin987/.local/var/lein_repo")))}
然后我运行lein deps以确保一切正常。注意最后一行:它从clj-ga
存储库获取版本为0.1.0-SNAPSHOT
的{{1}} jar。
local
我想出了如何从像this github gist这样的地方做到这一点。
或者,您可以结帐lein-localrepo,这是lein的一个插件,用于执行此类操作。