Clojure Leiningen 离线安装

发布于 2025-01-08 10:58:08 字数 183 浏览 0 评论 0原文

我在一个非常严格的环境中工作,我无法执行任何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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苯莒 2025-01-15 10:58:08

在受保护的企业环境中使用 Maven 是设置一个存储库镜像,用您需要的所有 jar 填充它,然后将其添加到 ~/.m2/settings.xml 文件以进行镜像 一切。

<settings>
  <mirrors>
    <mirror>
      <id>archiva.default</id>   
      <url>http://my.mirror.com:8080/archiva/repository/internal</url>
      <mirrorOf>*</mirrorOf>
    </mirror>
  </mirrors>
</settings>

这是前期的大量工作,但从长远来看它可以得到回报,因为您可以在以后的项目中在内部使用镜像(并使下载速度更快)

复制工作 .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.

<settings>
  <mirrors>
    <mirror>
      <id>archiva.default</id>   
      <url>http://my.mirror.com:8080/archiva/repository/internal</url>
      <mirrorOf>*</mirrorOf>
    </mirror>
  </mirrors>
</settings>

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

仙女山的月亮 2025-01-15 10:58:08

复制 .m2 目录和 lein sh 脚本应该可以解决问题。

Copying .m2 directory and the lein sh script should do the trick.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文