|
1 | 1 | %% -*- mode: erlang -*- |
2 | 2 | {deps, [ |
3 | | - {hocon, {git, "https://github.com/emqx/hocon.git", {tag, "0.44.0"}}}, |
4 | | - {typerefl, {git, "https://github.com/ieQu1/typerefl", {tag, "0.9.1"}}}, |
5 | | - {emqx, {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.8.4"}, "apps/emqx"}}, |
6 | | - {emqx_ctl, {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.8.4"}, "apps/emqx_ctl"}}, |
7 | | - {emqx_utils, |
8 | | - {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.8.4"}, "apps/emqx_utils"}}, |
9 | | - {emqx_durable_storage, |
10 | | - {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.8.4"}, |
11 | | - "apps/emqx_durable_storage"}}, |
12 | | - {emqx_ds_backends, |
13 | | - {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.8.4"}, "apps/emqx_ds_backends"}}, |
14 | | - {emqx_ds_builtin_local, |
15 | | - {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.8.4"}, |
16 | | - "apps/emqx_ds_builtin_local"}} |
| 3 | + {emqx_plugin_helper, |
| 4 | + {git, "https://github.com/savonarola/emqx-plugin-helper.git", {branch, "main"}}} |
17 | 5 | ]}. |
18 | 6 |
|
19 | 7 | {plugins, [ |
20 | | - {typerefl, {git, "https://github.com/ieQu1/typerefl", {tag, "0.9.1"}}}, |
21 | | - {hocon, {git, "https://github.com/emqx/hocon.git", {tag, "0.44.0"}}}, |
22 | | - {emqx_plugrel, {git, "https://github.com/emqx/emqx_plugrel.git", {tag, "0.5.0"}}}, |
23 | | - {erlfmt, "1.3.0"} |
| 8 | + {emqx_plugin_helper, |
| 9 | + {git, "https://github.com/savonarola/emqx-plugin-helper.git", {branch, "main"}}}, |
| 10 | + {erlfmt, "1.6.0"} |
24 | 11 | ]}. |
25 | 12 |
|
26 | 13 | {profiles, [ |
|
39 | 26 | {relx, [ |
40 | 27 | {release, |
41 | 28 | %% Do not update version manually, use make bump-version-patch/minor/major instead |
42 | | - {emqx_offline_message_plugin, "1.0.1"}, |
43 | | - [ |
44 | | - emqx_offline_message_plugin |
45 | | - ] |
46 | | - }, |
| 29 | + {emqx_offline_message_plugin, "1.0.1"}, [ |
| 30 | + emqx_offline_message_plugin, |
| 31 | + emqx_plugin_helper |
| 32 | + ]}, |
47 | 33 | {dev_mode, false}, |
48 | 34 | {include_erts, false}, |
49 | 35 | {include_src, false} |
|
62 | 48 | {compatibility, [{emqx, "~> 5.8"}]}, |
63 | 49 | {description, "Offline message persistence plugin for EMQX."} |
64 | 50 | ]}. |
65 | | - |
66 | | -{xref_checks, [ |
67 | | - undefined_function_calls, |
68 | | - undefined_functions, |
69 | | - locals_not_used, |
70 | | - deprecated_function_calls, |
71 | | - warnings_as_errors, |
72 | | - deprecated_functions |
73 | | -]}. |
0 commit comments