From Rebar 2.x to Rebar3
Rebar3 changes quite a few things from rebar 2.x. By and far, Rebar3 attempts to keep full compatibility when handling OTP applications written in pure Erlang. People who built or wrote standard OTP apps will therefore see very few incompatibilities, although the ground still needs to be prepared.
Major changes include (but are not limited to) moving all build artifacts to _build
, and changing the way dependencies are fetched.
Pure Erlang, Standard OTP Applications
The first step to converting your application is to remove old directories of artifacts:
- Remove the
ebin/
directory. Rebar3 will read and copyebin/
directories that exist to its own_build/
subdirectory, so that.app
and.beam
files generated by other tools remain usable. If you used rebar 2.x,ebin/
is where it’d put its artifacts, and those will conflict with Rebar3. - Remove the
_rel/
directory, if you usedrelx
. Relx is now integrated in Rebar3 and will store its artifacts in_build
. - Remove the
.rebar
directory. It is no longer used. - Remove the
deps/
directory; dependencies now go in_build
and this can prevent conflicts. - Remove these entries from
.gitignore
,.hgignore
, or whatever.
Once these directories are cleaned, the rebar.config
configuration file can be stripped a bit:
- remove
sub_dirs
andlib_dirs
entries, they likely aren’t necessary anymore; rebar3 automatically recognizessrc/
,apps/*
andlib/*
directories holding Erlang source files and OTP applications.
You should then review your .app.src
files to make sure that the following is respected:
- applications you depend on are listed in the
applications
tuple - no circular dependencies
- the following fields are mentioned (to work with releases!):
description
,vsn
,registered
,applications
,env
Required Directory Structure
Rebar3 explicitly handles releases and OTP applications only. Dependencies should only be OTP applications, one per entry.
Make sure you have one of the following directory structures:
src/*.{erl,app.src}
Which is a single-directory, single app structure. It is suitable for OTP applications, OTP releases, and escripts with a single top-level application. The src
directory is searched recursively and the files are handles as if they were all at the top level.
The other form is by using an ‘umbrella’ structure:
apps/app1/src/*.{erl,app.src}
apps/app2/src/*.{erl,app.src}
apps/app3/src/*.{erl,app.src}
or
lib/app1/src/*.{erl,app.src}
lib/app2/src/*.{erl,app.src}
lib/app3/src/*.{erl,app.src}
That format will hold many OTP applications at once and be amenable only to releases and escripts, not OTP libraries that can be used as dependencies.
Dependency Handling
Rebar3 now supports Hex packages and profiles. As such, consider:
- moving your dependencies to packages, see Dependencies, and Publishing Packages
- moving your dependencies like
meck
andPropEr
to thetest
profile to get them out of your general build. It’s likely your deps still include it so it may remain in the default builds too, sadly. - you no longer need to tell Rebar3 to fetch deps, it just knows whenever you tell it to compile or run tests.
Also note that Rebar3 no longer re-compiles dependencies once it has done so before; use _checkout
dependencies if you want that behaviour back.
Rebar3 also no longer checks or enforces dependency versions, and instead uses a ‘nearest to the root’ dependency selection algorithm in case of conflicts. The details are in Dependencies.
With this said and with your project ready, any Rebar3 guides in the documentation should be understandable and applicable.
Other Gotchas and Compilers
By default, Rebar3 sticks to the compilers available to erlc
: Erlang, yecc, MIBs, and so on. If you have:
- C code you’re going to need to move things to
Makefile
s or use the port compiler plugin (backwards compatible with rebar 2.x) - if you used QuickCheck or PropEr, you have to use the plugin for that
- diameter has its own plugin
- erlydtl has its own plugin
- you will have problems building some libraries with weird build tool interactions, specifically
edown
and similar libraries. In case of problems with these, heading to the #rebar channel on IRC will have community members point you to the easiest workaround. - reltool releases are no longer supported, and instead, Relx is used and documented in Releases
Others
- if you are still using
Makefile
s to create shortcut commands, consider using aliases - for code coverage, you will want to use the ‘cover’ command, as in ‘rebar3 do eunit, cover’. See the cover documentation for more details.
Maintaining backwards compatibility while using Hex packages
If you want to use Rebar3 config and options most of the time and provide backwards compatibility to Rebar 2 users, add something similar to following contents in rebar.config.script
, which will let older Rebar versions dynamically ditch Hex packages and give them the opportunity to include material that is now part of profiles
in Rebar3:
case erlang:function_exported(rebar3, main, 1) of
true -> % rebar3
CONFIG;
false -> % rebar 2.x or older
%% Rebuild deps, possibly including those that have been moved to
%% profiles
[{deps, [
{my_dep, "VSN", {git, "https://...", {tag, "VSN"}}},
...
]} | lists:keydelete(deps, 1, CONFIG)]
end.