Skip to content

Commit

Permalink
move to rebar3 and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
tsloughter committed Jun 22, 2015
1 parent 2e23e43 commit d726ba2
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 174 deletions.
7 changes: 1 addition & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@ otp_release:
- R16B01
- R16B
- R15B02
- R15B01
- R15B
- R14B04
- R14B03
- R14B02
script: "make rebuild"
script: "./rebar3 compile && ./rebar3 ct"
branches:
only:
- master
Expand Down
119 changes: 0 additions & 119 deletions Makefile

This file was deleted.

13 changes: 8 additions & 5 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
%% -*- mode: Erlang; fill-column: 80; comment-column: 75; -*-

%% Dependencies ================================================================
{deps, [{rebar_vsn_plugin, ".*",
{git, "https://github.com/erlware/rebar_vsn_plugin.git",
{branch, "master"}}}]}.
{deps, []}.

{erl_first_files, ["ec_dictionary", "ec_vsn"]}.

%% Compiler Options ============================================================
{erl_opts,
[{platform_define, "^[0-9]+", namespaced_types},
{platform_define, "^[0-9]+", have_callback_support},
{platform_define, "^R1[4|5]", deprecated_crypto},
debug_info,
warnings_as_errors]}.
Expand All @@ -21,5 +20,9 @@
{cover_enabled, true}.
{cover_print_enabled, true}.

%% Rebar Plugins ==============================================================
{plugins, [rebar_vsn_plugin]}.
%% Profiles ====================================================================
{profiles, [{dev, [{deps, [{neotoma, "",
{git, "https://github.com/seancribbs/neotoma.git", {branch, master}}},
{proper, "",
{git, "https://github.com/bkearns/proper.git", {branch, master}}}]}]}
]}.
42 changes: 0 additions & 42 deletions rebar.config.script

This file was deleted.

1 change: 1 addition & 0 deletions rebar.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[].
Binary file added rebar3
Binary file not shown.
10 changes: 8 additions & 2 deletions src/erlware_commons.app.src
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
%% -*- mode: Erlang; fill-column: 75; comment-column: 50; -*-
{application, erlware_commons,
[{description, "Additional standard library for Erlang"},
{vsn, "semver"},
{vsn, "0.13.0"},
{modules, []},
{registered, []},
{applications, [kernel, stdlib]}]}.
{applications, [kernel, stdlib]},

{contributors,["Eric Merritt", "Tristan Sloughter",
"Jordan Wilberding", "Martin Logan"]},
{licenses, ["Apache"]},
{links, [{"Github","https://github.com/erlware/erlware_commons"}]}
]}.

0 comments on commit d726ba2

Please sign in to comment.