mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
937e1c2e37
Notice that Elixir 1.12.0 requires Erlang/OTP 21 or higher BTW, this workaround works only with rebar2... unfortunately rebar3 doesn't compile the elixir files from lib/
12 lines
245 B
Erlang
12 lines
245 B
Erlang
{application, elixir,
|
|
[{description, "elixir"},
|
|
{vsn, "1.12.0"},
|
|
{modules, [
|
|
elixir
|
|
]},
|
|
{registered, [elixir_config, elixir_code_server]},
|
|
{applications, [kernel,stdlib,compiler]},
|
|
{mod, {elixir,[]}},
|
|
{env, [{ansi_enabled, false}]}
|
|
]}.
|