summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorTiago Freire <tcfonnet@gmail.com>2016-07-22 09:18:21 -0300
committerTiago Freire <tcfonnet@gmail.com>2016-07-25 10:51:14 -0300
commitcad149156ee46ec9feb4929dc1ed5d60a4f4f44e (patch)
treea36f8548f7b220f7846d7c4f77d03d5ab55bd390 /mix.exs
[WIP] Init.
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs22
1 files changed, 22 insertions, 0 deletions
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