diff options
author | Adam Kocoloski <adam@cloudant.com> | 2010-10-26 00:06:54 -0400 |
---|---|---|
committer | Adam Kocoloski <adam@cloudant.com> | 2010-10-26 00:09:23 -0400 |
commit | f35cbdbc2b4de02e8400aceb9e10f71c515be16d (patch) | |
tree | 79bb6bef65053fb4bb9f4401d0748bfa299ee7be /rebar.config | |
parent | ebac05f686b56791511cb9b599dfb5a742dcfc96 (diff) |
use get-deps for mochiweb
We need to host our own mochiweb which tags the versions used by
CouchDB. This commit also contains a new rebar with a patch to fix
git tag dependencies (submitted upstream).
Diffstat (limited to 'rebar.config')
-rw-r--r-- | rebar.config | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rebar.config b/rebar.config index c3ee7d9f..ccca445d 100644 --- a/rebar.config +++ b/rebar.config @@ -13,6 +13,8 @@ % the License. {deps, [ + {mochiweb, ".*", {git, "git://github.com/cloudant/mochiweb.git", {tag, + "CouchDB-1.0.1-rebar"}}}, {rexi, ".*", {git, "git://github.com/cloudant/rexi.git", "master"}}, {fabric, ".*", {git, "git://github.com/cloudant/fabric.git", "master"}}, {mem3, ".*", {git, "git://github.com/cloudant/mem3.git", "master"}}, @@ -20,6 +22,7 @@ ]}. % needed for a clean transition to the deps model {clean_files, [ + "apps/mochiweb/ebin", "apps/rexi/ebin", "apps/fabric/ebin", "apps/mem3/ebin", @@ -29,7 +32,6 @@ "apps/ibrowse", "apps/couch", "apps/etap", - "apps/mochiweb", "apps/oauth", "rel" ]}. |