Packages

A LALR SQL parser and compiler

Current section

Files

Jump to
sqlparse rebar.config
Raw

rebar.config

%% -----------------------------------------------------------------------------
%%
%% rebar.config: SQL - rebar3 configuration file.
%%
%% Copyright (c) 2012-18 K2 Informatics GmbH. All Rights Reserved.
%%
%% This file is provided to you 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.
%%
%% -----------------------------------------------------------------------------
{cover_enabled, true}.
{cover_excl_mods, [
sql_lex,
sqlparse
]}.
{cover_export_enabled, true}.
{cover_opts, [verbose]}.
{coveralls_coverdata, [
"_build/test/cover/ct.coverdata",
"_build/test/cover/eunit.coverdata"
]}.
{coveralls_service_name, "travis-ci"}.
{ct_opts, [
{cover},
{verbose}
]}.
{deps, [{jpparse, "1.3.1"}]}.
{deps_error_on_conflict, true}.
{dialyzer_plt_location, local}.
{dialyzer_warnings, [
error_handling,
overspecs,
race_conditions,
specdiffs,
underspecs,
unknown,
unmatched_returns
]}.
{eunit_opts, [
{skip_deps, true},
verbose
]}.
{plugins, [rebar3_hex]}.
{profiles, [
{test, [
{plugins, [
{coveralls, {git, "https://github.com/markusn/coveralls-erl", {branch, "master"}}},
{geas_rebar3, {git, "https://github.com/crownedgrouse/geas_rebar3.git", {branch, "master"}}}
]}
]}
]}.
{xrl_opts, [
{report_warnings, false},
{verbose, false}
]}.
{yrl_opts, [
{report_warnings, false},
{verbose, false}
]}.