我试图将使用rebar构建的REST API示例转换为rebar3版本(http://jordenlowe.com/title/Explain_like_I_am_5_-_Erlang_REST_Framework_Cowboy)。我已将jsx
添加到app.src
。
这可能是什么原因?在制作rebar3版本时,我还需要做些什么吗?
出现此错误。
===> Failed to solve release:
Dependency jsx is specified as a dependency but is not reachable by the system.
答案 0 :(得分:2)
将jsx添加到app.src文件是不够的。您需要添加此依赖项(jsx)rebar.config文件。
rebar.config中的deps部分必须类似于
{deps, [
{cowboy, "1.0.1"}, % package
{jsx, "2.8.0"}
]}.
答案 1 :(得分:1)
感谢您的回答和编辑@Hamidreza Soleimani。
我将此行添加到rebar.confid
,错误消失了。
{jsx, {git,"git://github.com/talentdeficit/jsx.git", {tag, "v2.7.1"}}}