Reputation: 2108
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
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
Reputation: 13840
To disable the Quarkus banner, set the quarkus.banner.enabled
configuration property to false.
Upvotes: 5