generated from membraneframework/membrane_template_plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
123 lines (107 loc) · 2.82 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
defmodule Fishjam.Mixfile do
use Mix.Project
@version "0.6.0"
@github_url "https://github.com/fishjam-dev/elixir_server_sdk"
@homepage_url "https://fishjam-dev.github.io/fishjam-docs/"
def project do
[
app: :fishjam_server_sdk,
version: @version,
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
aliases: aliases(),
dialyzer: dialyzer(),
# hex
description: "Fishjam Server SDK",
package: package(),
# docs
name: "Fishjam Server SDK",
source_url: @github_url,
homepage_url: @homepage_url,
docs: docs(),
# test coverage
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"coveralls.json": :test,
"test.docker": :test
]
]
end
def application do
[
extra_applications: []
]
end
defp elixirc_paths(env) when env in [:test, :test_local], do: ["lib", "test/support"]
defp elixirc_paths(_env), do: ["lib"]
defp deps do
[
{:tesla, "~> 1.5"},
{:mint, "~> 1.0"},
{:jason, "~> 1.4"},
{:websockex, "~> 0.4.3"},
{:elixir_uuid, "~> 1.2"},
{:castore, "~> 1.0"},
# protobuf deps
{:protobuf, "~> 0.12.0"},
# Docs, credo, test coverage, dialyzer
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:dialyxir, ">= 0.0.0", only: :dev, runtime: false},
{:credo, ">= 0.0.0", only: :dev, runtime: false},
{:excoveralls, ">= 0.0.0", only: [:test, :test_local], runtime: false},
# Test deps
{:plug_cowboy, "~> 2.5", only: [:test, :test_local]},
{:phoenix_pubsub, "~> 2.1", only: [:test, :test_local]}
]
end
defp dialyzer() do
opts = [
flags: [:error_handling],
plt_add_apps: [:mix]
]
if System.get_env("CI") == "true" do
# Store PLTs in cacheable directory for CI
[plt_local_path: "priv/plts", plt_core_path: "priv/plts"] ++ opts
else
opts
end
end
defp package do
[
maintainers: ["Fishjam Team"],
licenses: ["Apache-2.0"],
links: %{
"GitHub" => @github_url,
"Fishjam" => @homepage_url
}
]
end
defp docs do
[
main: "readme",
extras: ["README.md", "LICENSE"],
formatters: ["html"],
source_ref: "v#{@version}",
nest_modules_by_prefix: [
Fishjam,
Fishjam.Exception,
Fishjam.Notification
],
groups_for_modules: [
Events: ~r/^Fishjam\.((\bNotification\.[a-zA-Z]*$)|(\bMetricsReport))/
]
]
end
def aliases do
[
"test.local": ["cmd MIX_ENV=test_local mix test"],
"test.docker": "test_with_docker"
]
end
end