-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
33 lines (29 loc) · 707 Bytes
/
Copy pathmix.exs
File metadata and controls
33 lines (29 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
defmodule Highlander.Mixfile do
use Mix.Project
def project do
[app: :highlander,
version: "0.1.0",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
elixirc_paths: elixirc_paths(Mix.env),
deps: deps()]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
def application do
[
applications: [:logger],
mod: {Highlander, []}
]
end
defp deps do
[
{:zookeeper, github: "vishnevskiy/zookeeper-elixir"},
{:redix, github: "whatyouhide/redix"},
{:poison, "~> 3.0"},
{:ex_aws, "~> 1.0"},
{:hackney, "~> 1.6"}
]
end
end