diff options
author | Eric <[email protected]> | 2012-09-18 17:29:26 -0700 |
---|---|---|
committer | Eric <[email protected]> | 2012-09-18 17:29:26 -0700 |
commit | 8f2670540b6cef76726224801a696cfbed4f3738 (patch) | |
tree | 4cd1e463cf3c52eca6626d1caf27fd821d1f402d /rebar.config | |
parent | 388b5f05a634225dcc746293850948a02951330a (diff) | |
download | relx-8f2670540b6cef76726224801a696cfbed4f3738.tar.gz relx-8f2670540b6cef76726224801a696cfbed4f3738.tar.bz2 relx-8f2670540b6cef76726224801a696cfbed4f3738.zip |
add depsolver directly to the system
This is sub-optimal but I suspect rcl_depsolver is going to migrate
away from depsolver in any case.
Diffstat (limited to 'rebar.config')
-rw-r--r-- | rebar.config | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/rebar.config b/rebar.config index 2601902..b64dd08 100644 --- a/rebar.config +++ b/rebar.config @@ -2,15 +2,14 @@ {deps, [{neotoma, "", {git, "https://github.com/ericbmerritt/neotoma.git", {tag, "1.5.1"}}}, - {erlware_commons, "", - {git, "https://github.com/ericbmerritt/erlware_commons.git", {tag, "v0.8.0"}}}, + {erlware_commons, ".*", + {git, "https://github.com/ericbmerritt/erlware_commons.git", + {branch, "semver-format"}}}, {getopt, "", - {git, "https://github.com/jcomellas/getopt.git", {tag, "v0.5.1"}}}, - {depsolver, "", - {git, "https://github.com/ericbmerritt/depsolver.git", {tag, "v0.1.0"}}}]}. + {git, "https://github.com/jcomellas/getopt.git", {tag, "v0.5.1"}}}]}. {escript_incl_apps, - [getopt, depsolver, erlware_commons]}. + [getopt, erlware_commons]}. {first_files, [rcl_provider]}. |