-
Notifications
You must be signed in to change notification settings - Fork 37
/
mix.exs
33 lines (30 loc) · 856 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
defmodule Switchboard.Mixfile do
use Mix.Project
def project do
[app: :switchboard,
version: "0.3.2",
compilers: [:erlang, :app],
erlc_options: [{:parse_transform, :lager_transform}, {:i, "include"}],
deps: deps()]
end
def application do
[applications: [:kernel,
:stdlib,
:inets,
:crypto,
:poolboy,
:lager,
:gproc,
:jsx]]
end
defp deps do
[
{:lager, github: "basho/lager"},
{:poolboy, github: "devinus/poolboy"},
{:cowboy, github: "ninenines/cowboy", tag: "1.0.3"},
{:gproc, github: "uwiger/gproc"},
{:jsx, github: "talentdeficit/jsx"},
{:ranch, github: "ninenines/ranch", tag: "1.1.0", override: true}
]
end
end