-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
40 lines (37 loc) · 939 Bytes
/
mix.exs
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
34
35
36
37
38
39
40
defmodule Play.MixProject do
use Mix.Project
def project do
[
app: :play,
version: "0.1.0",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
compilers: [:elixir_make] ++ Mix.compilers(),
make_env: %{"MIX_ENV" => to_string(Mix.env())},
make_clean: ["clean"],
dialyzer: [
plt_add_deps: :transitive,
plt_add_apps: [:mix, :iex]
],
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {Play, []},
extra_applications: []
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.0", only: [:dev, :test], runtime: false},
{:dialyxir, "1.0.0-rc.6", only: :dev, runtime: false},
{:elixir_make, "~> 0.4"},
{:launcher, path: "../launcher"},
{:scenic, "0.10.2"},
{:sched_ex, "~> 1.1.1"}
]
end
end