-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
70 lines (66 loc) · 1.41 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
defmodule XIO.Mixfile do
use Mix.Project
def project() do
[
app: :xio,
version: "0.7.0",
elixir: "~> 1.7",
description: "XIO EMQ X 3.0 Elixir",
package: package(),
deps: deps()
]
end
def package do
[
files: ~w(doc include lib src mix.exs LICENSE),
licenses: ["ISC"],
maintainers: ["Namdak Tonpa"],
name: :xio,
links: %{"GitHub" => "https://github.com/enterprizing/xio"}
]
end
def application() do
[
mod: {:xio, []},
extra_applications: [:os_mon], # for mix release
application: [
:inets,
:mnesia,
:gproc,
:neotoma,
:replayq,
:clique,
:asn1,
:compiler,
:syntax_tools,
:crypto,
:cowlib,
:ekka,
:goldrush,
:public_key,
:lager,
:ssl,
:ranch,
:esockd,
:gen_rpc,
:ssl_verify_fun,
:cowboy,
:emqx,
:os_mon,
:minirest,
:emqx_dashboard
]
]
end
def deps() do
[
{:kvs, "~> 7.11.5", override: true},
{:ranch, "~> 1.7.1", override: true},
{:cowboy, "~> 2.8.0", override: true},
{:cowlib, "~> 2.9.0", override: true},
{:emqx, github: "xio/emqx", ref: "master"},
{:emqx_dashboard, github: "xio/emqx-dashboard", ref: "master"},
{:ex_doc, "~> 0.11", only: :dev}
]
end
end