summaryrefslogtreecommitdiff
path: root/mix.exs
blob: b8ac8470634c3c4f1bd68bd2f416dae26e6955d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
defmodule PowerDNSex.Mixfile do
  use Mix.Project

  def project do
    [app: :powerdnsex,
     version: "0.1.0",
     elixir: "~> 1.3",
     build_embedded: Mix.env == :prod,
     start_permanent: Mix.env == :prod,
     deps: deps()]
  end

  def application do
    [applications: [:logger, :httpoison], mod: {PowerDNSex, []}]
  end

  defp deps do
    [{:httpoison, "~> 0.9.0"},
     {:poison, "~> 2.2"},
     {:exvcr, "~> 0.8.0", only: :test}]
  end
end