defmodule Edantic.MixProject do use Mix.Project def project do [ app: :edantic, version: "0.1.0", elixir: "~> 1.9", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, deps: deps(), test_coverage: [tool: ExCoveralls], source_url: "https://github.com/savonarola/edantic", description: description(), package: package(), preferred_cli_env: [ coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test ], dialyzer: [ plt_add_deps: true, flags: ["-Werror_handling", "-Wrace_conditions"] ] ] end defp description do "SMPP 3.4 protocol and framework implemented in Elixir" end defp elixirc_paths(:test), do: ["lib", "test/support"] defp elixirc_paths(_), do: ["lib"] defp package do [ name: :edantic, files: ["lib", "mix.exs", "README*", "LICENSE"], maintainers: ["Ilya Averyanov"], licenses: ["MIT"], links: %{ "GitHub" => "https://github.com/savonarola/edantic" } ] 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 [ {:dialyxir, "~> 1.0.0-rc.7", only: [:dev], runtime: false}, {:earmark, "~> 1.1", only: :dev}, {:ex_doc, "~> 0.11", only: :dev}, {:excoveralls, "~> 0.5", only: :test} ] end end