-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
99 lines (91 loc) · 2.07 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
defmodule WeChat.MixProject do
use Mix.Project
@source_url "https://github.com/edragonconnect/elixir_wechat"
def project do
[
app: :elixir_wechat,
version: "0.4.6",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps(),
docs: docs(),
description: description(),
package: package()
]
end
def application do
[
extra_applications: [:logger],
mod: {WeChat.Application, []}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:tesla, "~> 1.4"},
{:finch, "~> 0.5"},
{:jason, "~> 1.1"},
{:decorator, "~> 1.3"},
{:plug, "~> 1.10", optional: true},
{:mock, "~> 0.3", only: :test},
{:ex_doc, "~> 0.21", only: [:docs, :dev], runtime: false}
]
end
defp docs do
[
main: "readme",
source_url: @source_url,
formatter_opts: [gfm: true],
extras: [
"README.md"
],
groups_for_modules: [
{
"BeHaviour",
[
WeChat.Storage.Client,
WeChat.Storage.Hub,
WeChat.Storage.ComponentClient,
WeChat.Storage.ComponentHub
]
},
{
"Default Storage Client to Hub",
[
WeChat.Storage.Adapter.DefaultClient,
WeChat.Storage.Adapter.DefaultComponentClient
]
},
{
"Meta",
[
WeChat.CardSignature,
WeChat.JSSDKSignature,
WeChat.Token,
WeChat.Error
]
},
{
"Meta Upload",
[
WeChat.UploadMedia,
WeChat.UploadMediaContent
]
}
]
]
end
defp description() do
"WeChat SDK for Elixir"
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "LICENSE.md"],
maintainers: ["Xin Zou", "Kevin Pan"],
licenses: ["MIT"],
links: %{"GitHub" => @source_url}
]
end
end