Current section
Files
Jump to
Current section
Files
deprecations_unite
mix.exs
mix.exs
defmodule DeprecationsUnite.MixProject do
use Mix.Project
def project do
[
app: :deprecations_unite,
version: "0.2.0",
elixir: "~> 1.13",
description: "A tool to merge deprecation lists in JSON format.",
package: [
name: "deprecations_unite",
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/mateusdeap/deprecations_unite"}
],
source_url: "https://github.com/mateusdeap/deprecations_unite",
start_permanent: Mix.env() == :prod,
deps: deps(),
escript: [main_module: DeprecationsUnite]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:poison, "~> 5.0.0"},
{:ex_doc, "~> 0.29.1", only: :dev, runtime: false}
]
end
end