mirror of
https://github.com/correl/rebar.git
synced 2025-03-18 17:00:12 -09:00
In inttest/proto_protobuffs, replace the external dependency to erlang_protobuffs, a protocol buffer compiler, with a simple mock. The mock provides enough of what is needed for inttest only, which is to generate some dummy content, but with proper file names.
10 lines
281 B
Erlang
10 lines
281 B
Erlang
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
|
%% ex: ts=4 sw=4 et
|
|
|
|
{application, protobuffs,
|
|
[{description,
|
|
"Simple mock of erlang_protobuffs, with enough to generate dummy files"},
|
|
{vsn, "1"},
|
|
{registered, []},
|
|
{applications, [kernel, stdlib]},
|
|
{env, []}]}.
|