简体   繁体   中英

Erlang.mk project as rebar3 dependency

I am working on an amqp1.0 client for an Erlang rebar3 -based project.

I need to add the rabbitmq-amqp1.0-client as the queueing dependency. However, rabbitmq-amqp1.0-client is an Erlang.mk project and cannot simply be added as a dependency since the two build systems are not compatible with each other.

Basically, how do I add the above mentioned amqp1.0 dependency to my rebar3 project?

My previous attempt at this problem was in conjunction with one @DenysGonchar. See the question we asked on rebar3.org forum. As a quick fix, we ended up precompiling the .beam files and emptying src/ contents, then pulling the precompiled deps into the rebar3 project. However, this means I have no access to the source files and this makes coding and debugging related code a bother.

NOTE: No code samples since the project is under NDA.

For anything above 3.0.2 of amqp_client you can fetch from Hex by adding {amqp_client, "3.8.1"} to your list of deps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM