-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
69 lines (61 loc) · 1.53 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
defmodule OpencensusTesla.MixProject do
use Mix.Project
def project do
[
app: :opencensus_tesla,
version: "0.2.1",
elixir: "~> 1.5",
start_permanent: Mix.env() == :prod,
deps: deps(),
aliases: aliases(),
description: description(),
package: package(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.html": :test,
"coveralls.json": :test,
docs: :docs,
"inchci.add": :docs,
"inch.report": :docs
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp aliases do
[
test: "test --no-start"
]
end
defp deps do
[
{:tesla, "~> 1.2"},
{:opencensus_elixir, "~> 0.3"},
# Documentation
{:ex_doc, ">= 0.0.0", only: [:docs]},
{:inch_ex, "~> 1.0", only: [:docs]},
# Testing
{:excoveralls, "~> 0.10.3", only: [:test]},
{:dialyxir, ">= 0.0.0", runtime: false, only: [:dev, :test]},
{:junit_formatter, ">= 0.0.0", only: [:test]}
]
end
defp description() do
"Tesla middleware for OpenCensus tracing"
end
defp package() do
[
licenses: ["Apache 2.0"],
links: %{
"GitHub" => "https://github.com/opencensus-beam/opencensus_tesla",
"OpenCensus" => "https://opencensus.io",
"OpenCensus Erlang" => "https://github.com/census-instrumentation/opencensus-erlang",
"OpenCensus BEAM" => "https://github.com/opencensus-beam"
}
]
end
end