-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmix.exs
More file actions
79 lines (70 loc) · 1.79 KB
/
mix.exs
File metadata and controls
79 lines (70 loc) · 1.79 KB
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
defmodule ExRTCP.MixProject do
use Mix.Project
@version "0.4.1"
@source_url "https://github.com/elixir-webrtc/ex_rtcp"
def project do
[
app: :ex_rtcp,
version: @version,
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
description: "Implementation of the RTCP protocol",
package: package(),
deps: deps(),
# docs
docs: docs(),
source_url: @source_url,
# dialyzer
dialyzer: [
plt_local_path: "_dialyzer",
plt_core_path: "_dialyzer"
],
# code coverage
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"coveralls.json": :test
]
]
end
def application do
[
extra_applications: [:logger]
]
end
def package do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => @source_url}
]
end
defp deps do
[
{:excoveralls, "~> 0.18", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.31", only: :dev, runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false}
]
end
defp docs() do
[
main: "readme",
extras: ["README.md"],
source_ref: "v#{@version}",
formatters: ["html"],
nest_modules_by_prefix: [
ExRTCP.Packet,
ExRTCP.Packet.TransportFeedback,
ExRTCP.Packet.PayloadFeedback
],
groups_for_modules: [
"Transport layer feedbacks": ~r/ExRTCP\.Packet\.TransportFeedback/,
"Payload-specific feedbacks": ~r/ExRTCP\.Packet\.PayloadFeedback/,
"Original (RFC 3550)": ~r/ExRTCP\.Packet\./
]
]
end
end