-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
93 lines (81 loc) · 1.94 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
91
92
93
defmodule NebulexLocalMultilevelAdapter.MixProject do
use Mix.Project
@app :nebulex_local_multilevel_adapter
@name "NebulexLocalMultilevelAdapter"
@source_url "https://github.com/slab/nebulex_local_multilevel_adapter"
@nbx_tag "2.5.1"
@nbx_vsn "2.5"
@version "0.2.0"
def project do
[
app: @app,
version: @version,
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
aliases: aliases(),
deps: deps(),
description: description(),
package: package(),
# Docs
name: @name,
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
nebulex_dep(),
{:telemetry, "~> 0.4 or ~> 1.0", optional: true},
# Docs
{:ex_doc, "~> 0.29", only: [:dev, :test], runtime: false}
]
end
defp description do
"A variant of Multilevel adapter for Nebulex with additional cluster features"
end
defp nebulex_dep do
if path = System.get_env("NEBULEX_PATH") do
{:nebulex, "~> #{@nbx_tag}", path: path}
else
{:nebulex, "~> #{@nbx_vsn}"}
end
end
defp docs do
[
main: @name,
source_ref: "v#{@version}",
canonical: "http://hexdocs.pm/nebulex_local_multilevel_adapter",
source_url: @source_url,
extras: [
"README.md"
]
]
end
defp aliases do
[
"nbx.setup": [
"cmd rm -rf nebulex",
"cmd git clone --depth 1 --branch v#{@nbx_tag} https://github.com/cabol/nebulex"
]
]
end
defp package do
[
name: @app,
maintainers: ["Slab"],
licenses: ["BSD-3-Clause"],
files: ~w(mix.exs lib README.md),
links: %{
"Github" => @source_url
}
]
end
end