defmodule SupervisorWithoutSimpleDeprecation.MixProject do use Mix.Project def project do [ app: :supervisor_without_simple_deprecation, version: "1.12.3", elixir: "1.12.3", start_permanent: Mix.env() == :prod, description: description(), package: package(), deps: deps() ] end # Run "mix help compile.app" to learn about applications. def application do [] end defp description do """ Replacement of Supervisor with one without simple deprecation warning. """ end defp package do [ files: ["lib", "mix.exs"], maintainers: ["Peter Arentsen"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/nulian/supervisor_without_simple_deprecation"} ] end # Run "mix help deps" to learn about dependencies. defp deps do [ # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} ] end end