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