rebar3_raw_deps
Provider for supporting the raw deps. It is a plugin of rebar3.
Overview
Rebar3 don't support to "raw dependencies" that is supported by rebar2. (see also)
However, It is often necessary in real world.
This plugin is one of the way to deal with this.
Usage
{plugins, [rebar3_raw_deps]}.
{deps, [
%% It is not a OTP application.
{mydeps, ".*", {git, "git://github.com/soranoba/mydeps.git", {branch, "master"}}}
]}.You can handle the non-OTP applications as a dependent library.