Skip to content

Commit 266ba93

Browse files
committed
Upgraded to rebar3
1 parent ccb1741 commit 266ba93

File tree

4 files changed

+18
-31
lines changed

4 files changed

+18
-31
lines changed

Makefile

+8-9
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,30 @@ all: deps compile xref test
1111
ci: deps compile xref dialyzer test
1212

1313
deps:
14-
rebar get-deps
14+
rebar3 upgrade
1515

1616
compile:
17-
rebar compile
17+
rebar3 compile
1818

1919
clean: clean_plt
20-
rebar clean
20+
rebar3 clean
2121

2222
clean-all: clean
2323
rm -rf deps
2424

2525
test:
26-
ERL_LIBS=./examples rebar ct skip_deps=true
26+
ERL_LIBS=./examples rebar3 ct skip_deps=true
2727

2828
xref:
29-
ERL_LIBS=./deps rebar xref skip_deps=true
29+
ERL_LIBS=./deps rebar3 xref skip_deps=true
3030

3131
edown_deps:
32-
rebar get-deps compile edown=true
32+
rebar3 do upgrade compile edown=true
3333

3434
doc: edown_deps
35-
rebar doc edown=true skip_deps=true
35+
rebar3 edoc edown=true skip_deps=true
3636

37-
$(EXOMETER_PLT):
38-
rebar get-deps compile
37+
$(EXOMETER_PLT): deps compile
3938
ERL_LIBS=deps dialyzer --build_plt --output_plt $(EXOMETER_PLT) \
4039
--apps $(DIALYZER_APPS) | \
4140
fgrep -v -f ./dialyzer.ignore-warnings

rebar.config

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99

1010
{deps,
1111
[
12-
{parse_trans, ".*", {git, "git://github.com/uwiger/parse_trans.git", {tag, "3.2.0"}}},
13-
{folsom, ".*", {git, "git://github.com/folsom-project/folsom", {tag, "0.8.5"}}},
14-
{hut, ".*", {git, "git://github.com/tolbrino/hut.git", {tag, "v1.1.1"}}},
15-
{setup, ".*", {git, "git://github.com/uwiger/setup.git", {tag, "2.0.2"}}}
12+
{parse_trans, "3.2.0"},
13+
{folsom, "0.8.5"},
14+
{hut, "1.2.0"},
15+
{setup, "2.0.2"}
1616
]}.
1717

1818
{profiles,
1919
[
20-
{test, [{deps, [{meck, {git, "git://github.com/eproxus/meck.git", {tag,"0.8.4"}}}]}]},
20+
{test, [{deps, [{meck, "0.8.4"}]}]},
2121
{docs, [{deps, [{edown, {git, "git://github.com/uwiger/edown.git", {branch, "master"}}}]}]}
2222
]}.
2323

rebar.lock

+4-16
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
11
[{<<"bear">>,{pkg,<<"bear">>,<<"0.8.5">>},1},
2-
{<<"folsom">>,
3-
{git,"git://github.com/folsom-project/folsom",
4-
{ref,"0948c5f7a2221cc7c4975d042b13c84bb9387517"}},
5-
0},
6-
{<<"hut">>,
7-
{git,"git://github.com/tolbrino/hut.git",
8-
{ref,"025540398478ab6f95932c3234382ac5bb21ad3e"}},
9-
0},
10-
{<<"parse_trans">>,
11-
{git,"git://github.com/uwiger/parse_trans.git",
12-
{ref,"f22fbf4982bc541518d4a9b3ad305810460724e5"}},
13-
0},
14-
{<<"setup">>,
15-
{git,"git://github.com/uwiger/setup.git",
16-
{ref,"eda3352e7555b9faf42b5242d95fc386bccbe123"}},
17-
0}].
2+
{<<"folsom">>,{pkg,<<"folsom">>,<<"0.8.5">>},0},
3+
{<<"hut">>,{pkg,<<"hut">>,<<"1.2.0">>},0},
4+
{<<"parse_trans">>,{pkg,<<"parse_trans">>,<<"3.2.0">>},0},
5+
{<<"setup">>,{pkg,<<"setup">>,<<"2.0.2">>},0}].

src/exometer_core.app.src

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{application, exometer_core,
33
[
44
{description, "Code instrumentation and metrics collection package."},
5-
{vsn, "1.5.3"},
5+
{vsn, "1.5.4"},
66
{registered, []},
77
{applications,
88
[

0 commit comments

Comments
 (0)