Current section
Files
Jump to
Current section
Files
mix.exs
defmodule TheEnd.Mixfile do
use Mix.Project
def project do
[app: :the_end,
version: "0.1.3",
elixir: "~> 1.4",
package: package(),
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps()]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:ex_doc, "~> 0.15", only: :dev, runtime: false}
]
end
defp package() do
[
description: "Graceful shutdown support for Phoenix or plain Plug application",
licenses: ["MIT"],
links: %{
"Github" => "https://github.com/lyokato/the_end",
"Docs" => "https://hexdocs.pm/the_end"
},
maintainers: ["Lyo Kato"]
]
end
end