Clojure Leiningen 离线安装
我在一个非常严格的环境中工作,我无法执行任何curl或wget脚本,如lein.sh/.bat,也无法“git”代码。 我有 leiningen-xxx-standalone.jar,它不构成完整的 leiningen 设置。 如何离线设置完整的 leiningen?有类似“完整”下载的东西吗?如果不是的话,主要部分是什么?所需的文件系统布局是什么?
I'm working in a very restrictive environment, I cannot execute any curl or wget scripts like lein.sh/.bat, nor can I "git" the code.
I have the leiningen-x.x.x-standalone.jar which does not make up a complete leiningen setup.
How can I setup a complete leiningen, offline? is there something like a "complete" download? If not what are the essential parts? What is the required file system layout?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在受保护的企业环境中使用 Maven 是设置一个存储库镜像,用您需要的所有 jar 填充它,然后将其添加到 ~/.m2/settings.xml 文件以进行镜像 一切。
这是前期的大量工作,但从长远来看它可以得到回报,因为您可以在以后的项目中在内部使用镜像(并使下载速度更快)
复制工作 .m2 目录也是一个完全值得尊敬的黑客
the "correct" approach for working with maven in a protected enterprise setting would be to setup a repo mirror, populate it with all the jars you need, and then add it to your ~/.m2/settings.xml file to mirror everything.
this is a lot of work up front, though it can pay off in the long run because you can use the mirror internally for later projects (and to make downloads faster)
copying a working .m2 directory is a perfectly respectable hack as well
复制 .m2 目录和 lein sh 脚本应该可以解决问题。
Copying .m2 directory and the lein sh script should do the trick.