defmodule ElixirTools.MixProject do use Mix.Project @version "0.1.0" @description "Tools used in pagantis for making developing easier" def project do [ app: :pagantis_elixir_tools, version: @version, description: @description, elixir: "~> 1.7", start_permanent: Mix.env() == :prod, test_coverage: [tool: ExCoveralls], preferred_cli_env: ["coveralls.json": :test], deps: deps(), package: package(), docs: [ extras: [ "README.md", ] ], ] 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.4", only: [:dev], runtime: false}, {:credo, "~> 1.0", only: [:dev, :test], runtime: false}, {:excoveralls, "~> 0.9", only: :test}, {:ex_doc, ">= 0.0.0", only: :dev} ] end defp package() do [ # name: "Pagantis Elixir Tools", # organization: "pagantis", licenses: ["Apache 2.0"], links: %{"GitHub" => "https://github.com/digitalorigin/pg-elixir-tools"} ] end end