diff options
author | Eric <[email protected]> | 2012-09-08 11:14:51 -0500 |
---|---|---|
committer | Eric <[email protected]> | 2012-09-08 11:14:51 -0500 |
commit | 13263b778c4f519e27629a2e0772b2466004005b (patch) | |
tree | 1c5c710672cc2d009ea8d8052da7f5aff59dc177 /rebar.config | |
parent | 6f6fd117cc8c7dd1f139fa7a8bfb53b0e670a968 (diff) | |
download | relx-13263b778c4f519e27629a2e0772b2466004005b.tar.gz relx-13263b778c4f519e27629a2e0772b2466004005b.tar.bz2 relx-13263b778c4f519e27629a2e0772b2466004005b.zip |
add goal parsing capability to the system
Diffstat (limited to 'rebar.config')
-rw-r--r-- | rebar.config | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/rebar.config b/rebar.config index cd3797a..e31e544 100644 --- a/rebar.config +++ b/rebar.config @@ -1,13 +1,15 @@ %% -*- mode: Erlang; fill-column: 80; comment-column: 75; -*- -{deps, [{erlware_commons, "", +{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, "0.5.1", + {getopt, "", {git, "https://github.com/jcomellas/getopt.git", {tag, "v0.5.1"}}}, - {depsolver, "0.0.2", + {depsolver, "", {git, "https://github.com/ericbmerritt/depsolver.git", {tag, "v0.0.2"}}}]}. {escript_incl_apps, [getopt, depsolver]}. -{erl_opts, [debug_info, warnings_as_errors]}. +{erl_opts, [debug_info, warnings_as_errors, inline]}. |