-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
90 lines (82 loc) · 2.07 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
90
defmodule Volley.MixProject do
use Mix.Project
@source_url "https://github.com/NFIBrokerage/volley"
@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: :volley,
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: "Volley",
docs: docs()
]
end
defp elixirc_paths(:test), do: ["lib", "test/fixtures", "test/support"]
defp elixirc_paths(_), do: ["lib"]
def application do
[]
end
defp deps do
[
{:spear, "~> 0.9 or ~> 1.0"},
{:gen_stage, "~> 1.0"},
{:broadway, "~> 0.6 or ~> 1.0", optional: true},
# docs
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
# test
{:bless, "~> 1.0", only: [:dev, :test]},
{:credo, "~> 1.0", only: [:dev, :test]},
{:excoveralls, "~> 0.7", only: :test}
]
end
defp package do
[
name: "volley",
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
"GenStage producers for EventStoreDB 20+ with Spear"
end
defp docs do
[
deps: [],
main: Volley,
extras: ~w[
CHANGELOG.md
],
groups_for_extras: [
Guides: Path.wildcard("guides/*.md")
],
skip_undefined_reference_warnings_on: [
"CHANGELOG.md"
]
]
end
end