diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-11-23 15:08:17 -0600 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-11-24 18:52:24 -0600 |
commit | 6914429bc6e35fe5f30dc83fcc32e2f724c8be81 (patch) | |
tree | 397151f41aadd24bd7bec21f368402b5f28e8f43 | |
parent | 4002e571418b7f793b395a76ea88080acfb1a640 (diff) |
remove include of rebar header from plugin template
-rw-r--r-- | priv/templates/plugin.erl.dtl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/priv/templates/plugin.erl.dtl b/priv/templates/plugin.erl.dtl index 49c3974..d3528c0 100644 --- a/priv/templates/plugin.erl.dtl +++ b/priv/templates/plugin.erl.dtl @@ -3,10 +3,8 @@ -export([init/1, do/1, format_error/1]). --include_lib("rebar3/include/rebar.hrl"). - -define(PROVIDER, {{name}}). --define(DEPS, []). +-define(DEPS, [app_discovery]). %% =================================================================== %% Public API |