defmodule Forage.MixProject do use Mix.Project @version "0.8.0" def project do [ app: :forage, version: @version, elixir: "~> 1.7", start_permanent: Mix.env() == :prod, description: description(), package: package(), deps: deps(), aliases: aliases(), elixirc_paths: elixirc_paths(Mix.env()), preferred_cli_env: [test: :test] ] end defp elixirc_paths(:test), do: ["lib", "test/support_web", "test/support"] defp elixirc_paths(_), do: ["lib"] # 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 [ {:ecto, "~> 3.0"}, {:phoenix_html, "~> 3.0"}, {:json, ">= 0.0.0"}, {:paginator, "~> 1.0"}, {:elixlsx, "~> 0.5"}, {:csv, "~> 3.0"}, # Dev and test dependencies {:jason, ">= 0.0.0", only: :test}, {:phoenix, "~> 1.6", only: :test}, {:gettext, "~> 0.19", only: :test}, {:floki, ">= 0.0.0", only: :test}, {:ex_doc, "~> 0.23", only: [:dev, :test]}, {:makeup_eex, "> 0.0.0", only: [:dev, :test]}, {:ecto_sqlite3, ">= 0.0.0"} ] end defp description() do "Dynamic ecto query builder" end defp package() do [ # This option is only needed when you don't want to use the OTP application name name: "forage", licenses: ["MIT"], links: %{"GitHub" => "https://github.com/tmbb/forage"} ] end defp aliases() do [ publish: "run scripts/publish.exs" ] end end