-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmix.exs
66 lines (60 loc) · 1.66 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
defmodule ExRay.Mixfile do
use Mix.Project
def project do
[
app: :ex_ray,
version: "0.1.4",
description: description(),
source_url: "https://github.com/derailed/ex_ray",
package: package(),
docs: docs(),
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.html": :test
],
dialyzer: [plt_add_deps: :transitive]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:otter , "~> 0.4.0"},
{:ex_doc , "~> 0.18.1", only: :dev, runtime: false},
{:dogma , "~> 0.1.15", only: :dev},
{:credo , "~> 0.8" , only: [:dev, :test], runtime: false},
{:excoveralls , "~> 0.7.4" , only: :test},
{:mix_test_watch, "~> 0.3" , only: :dev, runtime: false},
{:dialyxir , "~> 0.5" , only: [:dev], runtime: false}
]
end
defp description do
"""
ExRay enables tracing for your Elixir/Phoenix applications using
OpenTracing powered by Otter.
"""
end
defp package do
[
licenses: ["Apache 2.0"],
organization: "Imhotep Software",
maintainers: ["Fernand Galiana"],
files: ["lib", "mix.exs", "README.md"],
links: %{"GitHub" => "https://github.com/derailed/ex_ray"}
]
end
defp docs do
[
main: "ExRay",
logo: "assets/xray.png",
extras: ["README.md"]
]
end
end