summaryrefslogtreecommitdiff
path: root/rebar.config
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-07-27 18:36:31 -0500
committerTristan Sloughter <t@crashfast.com>2014-08-16 07:22:27 -0500
commiteb8fa02df7d71435a879de987b3139bb5bffb963 (patch)
treee3ac360353b37811be1a3775d986e4a3ceab16e2 /rebar.config
parent19c215ee9fe0726a1983b36f4f8bcc21d42a5ef8 (diff)
large refactoring
Removed separate compilers Resolves apps to build Finds avail deps before pulling/building Includes relx Simplifies build commands
Diffstat (limited to 'rebar.config')
-rw-r--r--rebar.config9
1 files changed, 9 insertions, 0 deletions
diff --git a/rebar.config b/rebar.config
index 1c62a55..b959579 100644
--- a/rebar.config
+++ b/rebar.config
@@ -4,6 +4,9 @@
%% escript_incl_extra is for internal rebar-private use only.
%% Do not use outside rebar. Config interface is not stable.
{escript_incl_extra, [{"priv/templates/*", "."}]}.
+{escript_incl_apps,
+ [getopt, erlydtl, erlware_commons, relx]}.
+{escript_top_level_app, rebar}.
%% Types dict:dict() and digraph:digraph() have been introduced in Erlang 17.
%% At the same time, their counterparts dict() and digraph() are to be
@@ -28,3 +31,9 @@
- (\"diameter_dict_util\":\"format_error\"/\"1\")
- (\"diameter_dict_util\":\"parse\"/\"2\"))",
[]}]}.
+
+{first_files, [rebar_provider]}.
+
+{deps, [{relx, "",
+ {git, "https://github.com/erlware/relx.git",
+ {branch, "master"}}}]}.