defmodule {app}.MixProject do use Mix.Project def project do [ app: :{app_snake}, version: "0.1.0", elixir: "~> 1.13", start_permanent: Mix.env() == :prod, deps: deps(), test_coverage: [tool: ExCoveralls], preferred_cli_env: [ "ca.release": :test, "ca.sobelow.sonar": :test, coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test, "coveralls.xml": :test, credo: :test, release: :prod, sobelow: :test, ], releases: [ {app_snake}: [ include_executables_for: [:unix], steps: [:assemble, :tar] ] ], metrics: {metrics} ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger], mod: {{app}.Application, [Mix.env()]} ] 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"} {:castore, "~> 1.0", override: true}, {:plug_cowboy, "~> 2.0"}, {:jason, "~> 1.4"}, {:plug_checkup, "~> 0.6"}, {:poison, "~> 5.0"}, {:cors_plug, "~> 3.0"}, {:timex, "~> 3.0"}, {:excoveralls, "~> 0.18", only: :test}, {:elixir_structure_manager, ">= 0.0.0", only: [:dev, :test]}, ] end end