如何在buildr中添加本地依赖
对于 java/scala 项目,我有一些依赖项不在远程存储库中,而是在我的文件系统中的其他位置。然后我有两个选项,这会导致问题:
我可以在我的项目文件夹中添加一个
lib/
目录。如何告诉 buildr 将内容添加到类路径中?我可以使用内置的依赖关系管理系统。我可以指示文件系统存储库路径而不是 http 路径吗?
谢谢
For a java/scala project I have some dependencies that are not in a remote repository, but somewhere else in my filesystem. I have then two options, which lead to questions:
I can add a
lib/
directory in my project folder. How can I tell buildr to add the content to the class path ?I can use the builtin dependencies management system. Can I indicate a filesystem repository path instead of an http one ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在
buildr
邮件列表中找到了我正在寻找的解决方案。 compile.with() 方法接受文件名数组(当然带有路径前缀)。因此,如果依赖项是名为lib
的目录中的 jar,您只需在
buildfile
中 调用:希望这能帮助其他buildr
高手。I found the solution I was looking for in
buildr
mailing list. Thecompile.with()
method accepts an array of file names (with the path prefix of course). So if the dependencies are jars in a directory calledlib
you can just call:in the
buildfile
. Hope that will help otherbuildr
adepts.关于你的第二个问题:
是的,就像maven2一样,您可以使用file:///协议来定位文件系统上的“远程”存储库。
Regarding your second question:
Yes, just like maven2, you can use the file:/// protocol to locate a "remote" repository on the file system.