-
Notifications
You must be signed in to change notification settings - Fork 11
/
mix.exs
98 lines (89 loc) · 2.96 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
94
95
96
97
98
#
# This file is part of Astarte.
#
# Copyright 2017-2023 SECO Mind Srl
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
defmodule Astarte.VMQ.Plugin.Mixfile do
use Mix.Project
def project do
[
app: :astarte_vmq_plugin,
version: "1.2.0-dev",
elixir: "~> 1.15",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
dialyzer: [plt_core_path: dialyzer_cache_directory(Mix.env())],
deps: deps() ++ astarte_required_modules(System.get_env("ASTARTE_IN_UMBRELLA"))
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Astarte.VMQ.Plugin.Application, []},
env: [
vmq_plugin_hooks: [
{:auth_on_publish, Astarte.VMQ.Plugin, :auth_on_publish, 6, []},
{:auth_on_register, Astarte.VMQ.Plugin, :auth_on_register, 5, []},
{:auth_on_subscribe, Astarte.VMQ.Plugin, :auth_on_subscribe, 3, []},
{:on_client_offline, Astarte.VMQ.Plugin, :on_client_offline, 1, []},
{:on_client_gone, Astarte.VMQ.Plugin, :on_client_gone, 1, []},
{:on_publish, Astarte.VMQ.Plugin, :on_publish, 6, []},
{:on_register, Astarte.VMQ.Plugin, :on_register, 3, []}
]
]
]
end
# Compile order is important to make sure support files are available when testing
defp elixirc_paths(:test), do: ["test/support", "lib"]
defp elixirc_paths(_), do: ["lib"]
defp dialyzer_cache_directory(:ci) do
"dialyzer_cache"
end
defp dialyzer_cache_directory(_) do
nil
end
defp astarte_required_modules("true") do
[
{:astarte_rpc, in_umbrella: true},
{:astarte_core, in_umbrella: true}
]
end
defp astarte_required_modules(_) do
[
{:astarte_rpc, github: "astarte-platform/astarte_rpc"},
{:astarte_core, github: "astarte-platform/astarte_core"}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:amqp, "~> 3.3"},
{:vernemq_dev, github: "vernemq/vernemq_dev"},
{:excoveralls, "~> 0.15", only: :test},
{:mississippi, github: "secomind/mississippi"},
{:pretty_log, "~> 0.1"},
{:dialyxir, "~> 1.4", only: [:dev, :ci], runtime: false},
{:xandra, "~> 0.14"}
]
end
end