kolchanov
kolchanov

Reputation: 2108

Quarkus splash screen disable or change

How can I disable or customize quarkus based cli application splash screen? I can't find proper information in documentation or tutorials.

Upvotes: 4

Views: 2938

Answers (2)

SitAAAx
SitAAAx

Reputation: 21

Using quarkus.banner.enabled can be used to disable the banner - as Chin Huang already mentioned. To customize/replace it you can use quarkus.banner.path.

Source: https://quarkus.io/guides/getting-started#banner

Upvotes: 2

Chin Huang
Chin Huang

Reputation: 13840

To disable the Quarkus banner, set the quarkus.banner.enabled configuration property to false.

Upvotes: 5

Related Questions