Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Exdm.Mixfile do use Mix.Project @version "0.0.4" def project do [app: :exdm, version: @version, elixir: "~> 1.0", description: description, package: package, source_url: "https://github.com/joeyates/exdm", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, preferred_cli_env: [espec: :test], test_coverage: [tool: Coverex.Task, coveralls: true], deps: deps] end def application do [applications: [:exrm, :logger]] end defp description do """ Deploy Elixir applications via mix tasks """ end defp package do [licenses: ["MIT"], maintainers: ["Joe Yates"], links: %{github: "https://github.com/joeyates/exdm"}] end defp deps do [ {:exrm, "~> 0.19.9"}, {:espec, "~> 0.8.6", only: :test}, {:meck, "~> 0.8.3", only: :test}, {:coverex, "~> 1.4", only: :test}, # hackney (coverex dep-dep) doesn't compile under test without this: {:cowboy, "1.0.4", only: :test} ] endend