-
Notifications
You must be signed in to change notification settings - Fork 8
/
mix.exs
85 lines (76 loc) · 2.01 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
defmodule OpencensusElixir.MixProject do
use Mix.Project
def project do
[
app: :opencensus_elixir,
version: "0.5.0",
elixir: "~> 1.5",
start_permanent: Mix.env() == :prod,
deps: deps(),
dialyzer: dialyzer(),
test_coverage: [tool: ExCoveralls],
aliases: aliases(),
description: description(),
package: package(),
preferred_cli_env: [
coveralls: :test,
"coveralls.html": :test,
"coveralls.json": :test,
credo: :test,
docs: :docs,
"inchci.add": :docs,
"inch.report": :docs,
"test.watch": :test
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:opencensus, "~> 0.9"},
# Documentation
{:ex_doc, ">= 0.0.0", only: [:docs]},
{:inch_ex, "~> 1.0", only: [:docs]},
# Testing
{:credo, "~> 1.1.0", only: [:test]},
{:dialyxir, ">= 0.0.0", runtime: false, only: [:dev, :test]},
{:excoveralls, "~> 0.10.3", only: [:test]},
{:junit_formatter, ">= 0.0.0", only: [:test]},
{:mix_test_watch, "~> 0.8", runtime: false, only: [:test]},
{:telemetry, "~> 0.4 or ~> 1.0"}
]
end
defp dialyzer() do
[
ignore_warnings: "dialyzer.ignore-warnings",
list_unused_filters: true,
plt_add_apps: [],
plt_add_deps: [:app_tree]
]
end
defp aliases do
[
test: "test --no-start"
]
end
defp description() do
"Elixir library for OpenCensus tracing"
end
defp package() do
[
licenses: ["Apache 2.0"],
links: %{
"GitHub" => "https://github.com/opencensus-beam/opencensus_elixir",
"OpenCensus" => "https://opencensus.io",
"OpenCensus Erlang" => "https://github.com/census-instrumentation/opencensus-erlang",
"OpenCensus BEAM" => "https://github.com/opencensus-beam"
}
]
end
end