1
2
3
4
5
6
7
8
9
10
11
12
13
|
%% -*- mode: Erlang; fill-column: 80; comment-column: 75; -*-
{deps, [{erlware_commons, "",
{git, "https://github.com/ericbmerritt/erlware_commons.git", {tag, "v0.7.0"}}},
{getopt, "0.5.1",
{git, "https://github.com/jcomellas/getopt.git", {tag, "v0.5.1"}}},
{depsolver, "0.0.2",
{git, "https://github.com/ericbmerritt/depsolver.git", {tag, "v0.0.2"}}}]}.
{escript_incl_apps,
[getopt, depsolver]}.
{erl_opts, [debug_info, warnings_as_errors]}.
|