defmodule Deditex.MixProject do use Mix.Project def project do [ app: :deditex, description: "Handles connections to the Deditec RO-ETH Modules.", package: package(), version: "0.1.0", elixir: "~> 1.6", start_permanent: Mix.env() == :prod, deps: deps(), test_coverage: [tool: ExCoveralls], preferred_cli_env: [ coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test ] ] 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 [ {:credo, "~> 0.9.0", only: [:dev, :test]}, {:dialyxir, "~> 0.5.1", only: [:dev], runtime: false}, {:benchfella, "~> 0.3.5", only: [:dev, :test]}, {:stubr, "~> 1.5.0", only: [:test]}, {:bitmap, "~> 1.0", only: [:dev, :test]}, {:excoveralls, "~> 0.8", only: :test}, {:ex_doc, ">= 0.0.0", only: :dev} # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}, ] end defp package do [ name: "deditex", licenses: ["GNU General Public License v3.0"], maintainers: ["Thomas Burkhalter"], links: %{"GitHub" => "https://github.com/Kagemaru/deditex"}, source_url: "https://github.com/Kagemaru/deditex" ] end end