-
Notifications
You must be signed in to change notification settings - Fork 187
/
mix.exs
72 lines (65 loc) · 1.73 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
defmodule Cluster.Mixfile do
use Mix.Project
@version "3.4.1"
@source_url "https://github.com/bitwalker/libcluster"
def project do
[
app: :libcluster,
version: @version,
elixir: "~> 1.13",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
description: """
Automatic Erlang cluster formation and management for Elixir/Erlang
applications
""",
package: package(),
docs: docs(),
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env()),
dialyzer: [
flags: ~w(-Wunmatched_returns -Werror_handling -Wrace_conditions -Wno_opaque -Wunderspecs)
],
preferred_cli_env: [
vcr: :test,
"vcr.delete": :test,
"vcr.check": :test,
"vcr.show": :test
]
]
end
def application do
[extra_applications: [:logger, :inets, :jason, :crypto, :ssl]]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: :dev, runtime: false},
{:exvcr, "~> 0.11", only: :test, runtime: false},
{:jason, "~> 1.1"},
{:telemetry, "~> 1.3"}
]
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "LICENSE.md", "CHANGELOG.md"],
maintainers: ["Paul Schoenfelder"],
licenses: ["MIT"],
links: %{
"Changelog" => "https://hexdocs.pm/libcluster/changelog.html",
GitHub: @source_url
}
]
end
defp docs do
[
extras: ["CHANGELOG.md", "README.md"],
main: "readme",
source_url: @source_url,
source_ref: @version,
formatter_opts: [gfm: true]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
end