-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
89 lines (80 loc) · 2.13 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
86
87
88
89
defmodule SlipstreamHoneycomb.MixProject do
use Mix.Project
@source_url "https://github.com/NFIBrokerage/slipstream_honeycomb"
@version_file Path.join(__DIR__, ".version")
@external_resource @version_file
@version (case Regex.run(~r/^v([\d\.\w-]+)/, File.read!(@version_file),
capture: :all_but_first
) do
[version] -> version
nil -> "0.0.0"
end)
def project do
[
app: :slipstream_honeycomb,
version: @version,
elixir: "~> 1.6",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
preferred_cli_env: [
credo: :test,
coveralls: :test,
"coveralls.html": :test,
bless: :test,
test: :test
],
test_coverage: [tool: ExCoveralls],
package: package(),
description: description(),
source_url: @source_url,
name: "SlipstreamHoneycomb",
docs: docs()
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
def application do
[]
end
defp deps do
[
{:slipstream, "~> 0.3 or ~> 1.0"},
{:telemetry, "~> 0.4 or ~> 1.0"},
{:opencensus_honeycomb, "~> 0.2"},
# docs
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
# test
{:bless, "~> 1.0", only: [:dev, :test]},
{:mox, "~> 1.0", only: :test},
{:credo, "~> 1.0", only: [:dev, :test]},
{:excoveralls, "~> 0.7", only: :test}
]
end
defp package do
[
name: "slipstream_honeycomb",
files: ~w(lib .formatter.exs mix.exs README.md .version),
licenses: ["Apache-2.0"],
links: %{
"GitHub" => @source_url,
"CHANGELOG" => @source_url <> "/blobs/main/CHANGELOG.md"
}
]
end
defp description do
"An adapter between slipstream telemetry and honeycomb events"
end
defp docs do
[
deps: [],
extras: [
"CHANGELOG.md"
],
groups_for_extras: [
Guides: Path.wildcard("guides/*.md")
]
]
end
end
# Generated by Elixir.Gaas.Generators.Simple.LibraryMix