Skip to content

Commit

Permalink
[Quarkus] Remove default quarkus-resteasy-reactive dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
avano authored and mmuzikar committed May 30, 2023
1 parent b45db20 commit 221928b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ private void customizeProject(List<Dependency> dependencies) {

if (!OpenshiftConfiguration.isOpenshift()) {
// quarkus-resteasy is needed for the openshift.yml to be generated, but the resteasy itself is not used anywhere
// remove quarkus-resteasy in local deployments as it can throw exceptions for occupied 8080 port
// remove quarkus-resteasy-reactive in local deployments as it can throw exceptions for occupied 8080 port
model.setDependencies(
model.getDependencies().stream().filter(d -> !"quarkus-resteasy".equals(d.getArtifactId())).collect(Collectors.toList())
model.getDependencies().stream().filter(d -> !"quarkus-resteasy-reactive".equals(d.getArtifactId())).collect(Collectors.toList())
);
}

Expand Down

0 comments on commit 221928b

Please sign in to comment.