如何创建钢筋仓库?
我想构建和部署 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了创建 rebar 可以理解的依赖项,您需要在
src
目录中有一个.app.src
文件。看看 estring - 我有文件src/estring.app.src 以及我的实际源文件。在另一个需要 estring 的项目中,我的 rebar.config 中会有类似的内容:
In order to create a dependency which rebar can understand, you need to have a
.app.src
file in asrc
directory. Take a look at estring - there I have the filesrc/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: