defmodule EctoCommand.MixProject do use Mix.Project def project do [ app: :ecto_command, version: "0.2.1", elixir: "~> 1.14", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, test_coverage: [tool: ExCoveralls], preferred_cli_env: [ coveralls: :test, "coveralls.html": :test, coverage_report: :test, "ecto.migrate.test": :test, "ecto.reset.test": :test, "test.slow": :test ], deps: deps(), # Docs name: "EctoCommand", description: "EctoCommand is a toolkit for mapping, validating, and executing commands received from any source.", package: package(), source_url: "https://github.com/silvadanilo/ecto_command", homepage_url: "https://github.com/silvadanilo/ecto_command", docs: [ # The main page in the docs main: "EctoCommand", extras: ["README.md"] ] ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger] ] end defp package() do [ licenses: ["MIT"], links: %{"GitHub" => "https://github.com/silvadanilo/ecto_command"} ] end # Specifies which paths to compile per environment. defp elixirc_paths(:test), do: ["lib", "test/support"] defp elixirc_paths(_), do: ["sample", "lib"] # Run "mix help deps" to learn about dependencies. defp deps do [ {:ecto_sql, "~> 3.12"}, {:open_api_spex, "~> 3.21"}, # dev {:ex_doc, "~> 0.37", only: :dev, runtime: false}, {:makeup_html, ">= 0.2.0", only: :dev, runtime: false}, {:dialyxir, "~> 1.4", only: [:dev], runtime: false}, # test {:excoveralls, "~> 0.15.3", only: [:dev, :test]}, {:credo, "~> 1.7", only: [:dev, :test], runtime: false} ] end end