是否有可用于 rebar3 的插件路径自定义?
Is there plugin path customizations available for rebar3?
我希望将我的自定义项目添加为 rebar3.config 中的插件。是否可以在本地获取插件,还是必须从 hex.pm?
也可以使用来自GitHub
的路径:
{plugins, [
{your_plugin,
{git, "https://github.com/path-to/your_plagin.git",
{branch, "your-branch"}}
}
]}.
我希望将我的自定义项目添加为 rebar3.config 中的插件。是否可以在本地获取插件,还是必须从 hex.pm?
也可以使用来自GitHub
的路径:
{plugins, [
{your_plugin,
{git, "https://github.com/path-to/your_plagin.git",
{branch, "your-branch"}}
}
]}.