From cad149156ee46ec9feb4929dc1ed5d60a4f4f44e Mon Sep 17 00:00:00 2001 From: Tiago Freire Date: Fri, 22 Jul 2016 09:18:21 -0300 Subject: [WIP] Init. --- mix.exs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 mix.exs (limited to 'mix.exs') diff --git a/mix.exs b/mix.exs new file mode 100644 index 0000000..b6069f5 --- /dev/null +++ b/mix.exs @@ -0,0 +1,22 @@ +defmodule PowerDNSx.Mixfile do + use Mix.Project + + def project do + [app: :powerdnsx, + 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]] + end + + defp deps do + [{:httpoison, "~> 0.9.0"}, + {:poison, "~> 2.2"}, + {:exvcr, "~> 0.8.0", only: :test}] + end +end -- cgit v1.2.3