-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmix.exs
63 lines (56 loc) · 1.57 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
defmodule Opencensus.Plug.MixProject do
use Mix.Project
@description "Integration between OpenCensus and Plug"
def project do
[
app: :opencensus_plug,
version: "0.3.0",
elixir: "~> 1.5",
elixirc_options: [warnings_as_errors: true],
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.html": :test,
"coveralls.json": :test,
docs: :docs,
"inchci.add": :docs,
"inch.report": :docs
],
description: @description,
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
licenses: ["Apache 2.0"],
links: %{
"GitHub" => "https://github.com/opencensus-beam/opencensus_plug",
"OpenCensus" => "https://opencensus.io",
"OpenCensus Erlang" => "https://github.com/census-instrumentation/opencensus-erlang",
"OpenCensus BEAM" => "https://github.com/opencensus-beam"
}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:plug, "~> 1.6"},
{:opencensus, "~> 0.9"},
# 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
end