Skip to content

Commit 86a18bf

Browse files
authored
erlang-server: add jesse to app.up release (#20120)
* erlang-server: add jesse to app.up release * erlang-server: remove dialyzer errors that might not be related to the program
1 parent 6690802 commit 86a18bf

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

modules/openapi-generator/src/main/resources/erlang-server/app.src.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{{#appDescription}}"{{.}}"{{/appDescription}}{{^appDescription}}"OpenAPI rest server library"{{/appDescription}}},
55
{vsn, "{{apiVersion}}"},
66
{registered, []},
7-
{applications, [kernel, stdlib, public_key, ssl, inets, ranch, cowboy]},
7+
{applications, [kernel, stdlib, public_key, ssl, inets, ranch, cowboy, jesse]},
88
{env, []},
99
{modules, []},
1010
{licenses, [{{#licenseInfo}}"{{.}}"{{/licenseInfo}}]},

modules/openapi-generator/src/main/resources/erlang-server/rebar.config.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
{dialyzer,
1010
[{plt_extra_apps, [cowboy, cowlib, ranch, jesse]},
11-
{warnings, [missing_return, unknown]}
11+
{warnings, [no_match, no_unused, missing_return, unknown]}
1212
]}.
1313

1414
{xref_checks,

samples/server/echo_api/erlang-server/rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
{dialyzer,
1010
[{plt_extra_apps, [cowboy, cowlib, ranch, jesse]},
11-
{warnings, [missing_return, unknown]}
11+
{warnings, [no_match, no_unused, missing_return, unknown]}
1212
]}.
1313

1414
{xref_checks,

samples/server/echo_api/erlang-server/src/openapi.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"Echo Server API"},
55
{vsn, "1.0.0"},
66
{registered, []},
7-
{applications, [kernel, stdlib, public_key, ssl, inets, ranch, cowboy]},
7+
{applications, [kernel, stdlib, public_key, ssl, inets, ranch, cowboy, jesse]},
88
{env, []},
99
{modules, []},
1010
{licenses, ["Apache 2.0"]},

samples/server/petstore/erlang-server/rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
{dialyzer,
1010
[{plt_extra_apps, [cowboy, cowlib, ranch, jesse]},
11-
{warnings, [missing_return, unknown]}
11+
{warnings, [no_match, no_unused, missing_return, unknown]}
1212
]}.
1313

1414
{xref_checks,

samples/server/petstore/erlang-server/src/openapi.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters."},
55
{vsn, "1.0.0"},
66
{registered, []},
7-
{applications, [kernel, stdlib, public_key, ssl, inets, ranch, cowboy]},
7+
{applications, [kernel, stdlib, public_key, ssl, inets, ranch, cowboy, jesse]},
88
{env, []},
99
{modules, []},
1010
{licenses, ["Apache-2.0"]},

0 commit comments

Comments
 (0)