如何创建钢筋仓库?

发布于 2024-12-02 16:26:38 字数 97 浏览 0 评论 0原文

我想构建和部署 erlang 文件,然后将其用作另一个项目中的依赖项。本质上我正在寻找相当于 mvn deploy 和 sonatype repo 的东西。我该如何用钢筋进行设置?

I want to build and deploy erlang files which will then be used as a dependency in another project. Essentially I am looking for the equivalent of mvn deploy and a sonatype repo. How would I set this up with rebar?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

゛清羽墨安 2024-12-09 16:26:38

为了创建 rebar 可以理解的依赖项,您需要在 src 目录中有一个 .app.src 文件。看看 estring - 我有文件 src/estring.app.src 以及我的实际源文件。在另一个需要 estring 的项目中,我的 rebar.config 中会有类似的内容:

{deps, [{estring, ".", {git, "git://github.com/dweldon/estring.git", "HEAD"}},
...

In order to create a dependency which rebar can understand, you need to have a .app.src file in a src directory. Take a look at estring - there I have the file src/estring.app.src along with my actual source file. In another project which requires estring I would have something like this in my rebar.config:

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