chore: fix mix.exs checking
This commit is contained in:
parent
bdce32e713
commit
5cc28a7b45
|
@ -0,0 +1,5 @@
|
|||
%%--------------------------------------------------------------------
|
||||
%% Copyright (c) 2023 EMQ Technologies Co., Ltd. All Rights Reserved.
|
||||
%%--------------------------------------------------------------------
|
||||
|
||||
-define(CASSANDRA_DEFAULT_PORT, 9042).
|
|
@ -7,7 +7,7 @@
|
|||
-behaviour(emqx_resource).
|
||||
|
||||
-include_lib("emqx_connector/include/emqx_connector.hrl").
|
||||
-include_lib("emqx_ee_connector/include/emqx_ee_connector.hrl").
|
||||
-include("emqx_bridge_cassandra.hrl").
|
||||
-include_lib("typerefl/include/types.hrl").
|
||||
-include_lib("emqx/include/logger.hrl").
|
||||
-include_lib("hocon/include/hoconsc.hrl").
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
-compile(nowarn_export_all).
|
||||
-compile(export_all).
|
||||
|
||||
-include("emqx_connector.hrl").
|
||||
-include("emqx_ee_connector.hrl").
|
||||
-include("emqx_bridge_cassandra.hrl").
|
||||
-include("emqx_connector/include/emqx_connector.hrl").
|
||||
-include_lib("eunit/include/eunit.hrl").
|
||||
-include_lib("emqx/include/emqx.hrl").
|
||||
-include_lib("stdlib/include/assert.hrl").
|
||||
|
|
|
@ -3,4 +3,3 @@
|
|||
%%-------------------------------------------------------------------
|
||||
|
||||
-define(INFLUXDB_DEFAULT_PORT, 8086).
|
||||
-define(CASSANDRA_DEFAULT_PORT, 9042).
|
||||
|
|
13
mix.exs
13
mix.exs
|
@ -359,6 +359,19 @@ defmodule EMQXUmbrella.MixProject do
|
|||
emqx_ee_bridge: :permanent,
|
||||
emqx_bridge_kafka: :permanent,
|
||||
emqx_bridge_gcp_pubsub: :permanent,
|
||||
emqx_bridge_cassandra: :permanent,
|
||||
emqx_bridge_clickhouse: :permanent,
|
||||
emqx_bridge_dynamo: :permanent,
|
||||
emqx_bridge_hstreamdb: :permanent,
|
||||
emqx_bridge_influxdb: :permanent,
|
||||
emqx_bridge_matrix: :permanent,
|
||||
emqx_bridge_mongodb: :permanent,
|
||||
emqx_bridge_mysql: :permanent,
|
||||
emqx_bridge_pgsql: :permanent,
|
||||
emqx_bridge_redis: :permanent,
|
||||
emqx_bridge_rocketmq: :permanent,
|
||||
emqx_bridge_tdengine: :permanent,
|
||||
emqx_bridge_timescale: :permanent,
|
||||
emqx_ee_schema_registry: :permanent
|
||||
],
|
||||
else: []
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
emqx_bridge_cassa_impl {
|
||||
emqx_bridge_cassandra_impl {
|
||||
|
||||
keyspace.desc:
|
||||
"""Keyspace name to connect to."""
|
||||
|
|
Loading…
Reference in New Issue