-
Notifications
You must be signed in to change notification settings - Fork 41
/
mix.exs
78 lines (70 loc) · 1.76 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
defmodule Plugsnag.Mixfile do
use Mix.Project
@source_url "https://github.com/bugsnag-elixir/plugsnag"
@version "1.7.1"
def project do
[
app: :plugsnag,
version: @version,
elixir: "~> 1.8",
package: package(),
deps: deps(),
docs: docs(),
preferred_cli_env: [docs: :docs, "hex.publish": :docs],
dialyzer: dialyzer(Mix.env()),
elixirc_paths: elixirc_paths(Mix.env())
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_env), do: ["lib"]
# Setup dialyzer paths for CI Cache
defp dialyzer(:test) do
[
plt_core_path: "priv/plts",
plt_file: {:no_warn, "priv/plts/dialyzer.plt"},
flags: [
:underspecs,
:unknown,
:unmatched_returns,
:overspecs,
:specdiffs,
:extra_return,
:missing_return
]
]
end
defp dialyzer(_), do: []
def package do
[
description: "Bugsnag reporter for Elixir's Plug",
contributors: ["Jared Norman", "Andrew Harvey", "Guilherme de Maio"],
maintainers: ["Andrew Harvey", "Guilherme de Maio"],
licenses: ["MIT"],
links: %{
Changelog: "https://hexdocs.pm/plugsnag/changelog.html",
GitHub: @source_url
}
]
end
defp deps do
[
{:bugsnag, "~> 1.3 or ~> 2.0 or ~> 3.0"},
{:plug, "~> 1.0"},
{:ex_doc, ">= 0.0.0", only: :docs, runtime: false},
{:dialyxir, "~> 1.2", only: [:test], runtime: false}
]
end
defp docs do
[
extras: [
"CHANGELOG.md": [],
"LICENSE.md": [title: "License"],
"README.md": [title: "Overview"]
],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
formatters: ["html"]
]
end
end