Minor mix.exs definitions copied from the template file

This commit is contained in:
Badlop 2021-07-15 21:28:33 +02:00
parent 8ca12d4d23
commit f35d304582
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,4 @@
defmodule Ejabberd.Mixfile do defmodule Ejabberd.MixProject do
use Mix.Project use Mix.Project
def project do def project do
@ -13,6 +13,8 @@ defmodule Ejabberd.Mixfile do
erlc_paths: ["asn1", "src"], erlc_paths: ["asn1", "src"],
# Elixir tests are starting the part of ejabberd they need # Elixir tests are starting the part of ejabberd they need
aliases: [test: "test --no-start"], aliases: [test: "test --no-start"],
start_permanent: Mix.env() == :prod,
language: :erlang,
releases: releases(), releases: releases(),
package: package(), package: package(),
deps: deps()] deps: deps()]