commit 933949124273bf73f4ea5382425f83b5f2e14439 Author: Vadim Yanitskiy Date: Thu Aug 15 22:05:33 2019 +0200 Initial .gitignore and rebar.config diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..83aa88b --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +_build +*.beam diff --git a/rebar.config b/rebar.config new file mode 100644 index 0000000..abab398 --- /dev/null +++ b/rebar.config @@ -0,0 +1,25 @@ +{erl_opts, [debug_info, {parse_transform, lager_transform}]}. + +{deps, [ + {setup, "2.0.2"}, + {lager, "3.6.8"}, + {osmo_ss7, {git, "git://git.osmocom.org/erlang/osmo_ss7", {branch, "laforge/wip"}}}, + {osmo_gsup, {git, "git://git.osmocom.org/erlang/osmo_gsup", {branch, "master"}}} +]}. + +{minimum_otp_vsn, "20.3"}. + +{xref_checks, [undefined_function_calls, undefined_functions, + deprecated_function_calls, deprecated_functions]}. + +{provider_hooks, + [{pre, + [{compile, {diameter, compile}}, + {clean, {diameter, clean}} + ]} +]}. + +{dialyzer, [ + {plt_extra_apps, [kernel, stdlib, erts, tools, inets, compiler]}, + {warnings, [no_improper_lists]} + ]}.