21ab7369ca
With the release of Elixir 1.14, Elixir 1.9 is now end-of-life. Elixir 1.10 Release Notes: https://github.com/elixir-lang/elixir/releases/tag/v1.10.0
22 lines
351 B
Elixir
22 lines
351 B
Elixir
defmodule Restarter.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :restarter,
|
|
version: "0.1.0",
|
|
elixir: "~> 1.10",
|
|
start_permanent: Mix.env() == :prod,
|
|
deps: deps()
|
|
]
|
|
end
|
|
|
|
def application do
|
|
[
|
|
mod: {Restarter, []},
|
|
extra_applications: [:logger]
|
|
]
|
|
end
|
|
|
|
defp deps, do: []
|
|
end
|