summaryrefslogtreecommitdiff
path: root/rebar.config
blob: a7a255c53795c2ec73b258d5f6d9670ef9ad3c12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
%% -*- tab-width: 4;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ft=erlang ts=4 sw=4 et

{cover_enabled, true}.
{eunit_opts, [{report,{eunit_surefire,[{dir,"."}]}}]}.
{edoc_opts, [{preprocess, true}]}.
{erl_opts, [debug_info, fail_on_warning]}.

{require_otp_vsn, "R14B04|R15|R16"}.

{deps, [
    %% erlang oauth module
    {oauth, ".*",
     {git, "http://git-wip-us.apache.org/repos/asf/couchdb-oauth.git",
      {branch, "1843-feature-bigcouch"}}},

    %% ibrowse module , http client
    {ibrowse, ".*",
     {git, "http://git-wip-us.apache.org/repos/asf/couchdb-ibrowse.git",
      {branch, "1843-feature-bigcouch"}}},

    %% mochiweb module, http framework
    {mochiweb, ".*",
     {git,"http://git-wip-us.apache.org/repos/asf/couchdb-mochiweb.git",
      {branch, "import-upstream"}}},

    %% snappy module, used for compression
    {snappy, ".*",
     {git, "http://git-wip-us.apache.org/repos/asf/couchdb-snappy.git",
      {branch, "1994-merge-rcouch"}}},

    %% json module, encode/decode module
    {jiffy, ".*",
        {git, "http://git-wip-us.apache.org/repos/asf/couchdb-jiffy.git",
         {branch, "1843-feature-bigcouch"}}},

    %% lager logging module
    {lager, ".*",
     {git, "http://git-wip-us.apache.org/repos/asf/couchdb-lager.git",
      {branch, "import-master"}}},


     %% apps
     {couch_collate, ".*",
      {git,"http://git-wip-us.apache.org/repos/asf/couchdb-couch-collate.git",
       {branch, "1994-merge-rcouch"}}},

     {couch, ".*",
      {git, "http://git-wip-us.apache.org/repos/asf/couchdb-couch.git",
       {branch, "1994-merge-rcouch"}}},

    {couch_httpd, ".*",
      {git, "http://git-wip-us.apache.org/repos/asf/couchdb-couch-httpd.git",
       {branch, "1994-merge-rcouch"}}},

    {couch_index, ".*",
      {git, "http://git-wip-us.apache.org/repos/asf/couchdb-couch-index.git",
       {branch, "1994-merge-rcouch"}}},

    {couch_mrview, ".*",
      {git, "http://git-wip-us.apache.org/repos/asf/couchdb-couch-mrview.git",
       {branch, "1994-merge-rcouch"}}},

    {couch_replicator, ".*",
      {git, "http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator.git",
       {branch, "1994-merge-rcouch"}}},

     {couch_plugins, ".*",
      {git, "http://git-wip-us.apache.org/repos/asf/couchdb-couch-plugins.git",
       {branch, "1994-merge-rcouch"}}},

     {couch_dbupdates, ".*",
      {git, "http://git-wip-us.apache.org/repos/asf/couchdb-couch-dbupdates.git",
       {branch, "1994-merge-rcouch"}}}

]}.


{deps_dir, ["src"]}.

{libs_dir, ["src/"]}.

{sub_dirs, [
    "support/couch_rel",
    "rel"
]}.

{post_hooks, [{compile, "escript support/build_js.escript"}]}.