diff --git a/core/deployment/src/main/java/io/quarkus/deployment/console/ConsoleConfig.java b/core/deployment/src/main/java/io/quarkus/deployment/console/ConsoleConfig.java index 4be3678eca66e..24f0a5812bf9d 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/console/ConsoleConfig.java +++ b/core/deployment/src/main/java/io/quarkus/deployment/console/ConsoleConfig.java @@ -2,6 +2,7 @@ import java.util.Optional; +import io.quarkus.runtime.annotations.ConfigDocIgnore; import io.quarkus.runtime.annotations.ConfigPhase; import io.quarkus.runtime.annotations.ConfigRoot; import io.smallrye.config.ConfigMapping; @@ -41,5 +42,6 @@ public interface ConsoleConfig { *

* If this is not present then an attempt will be made to guess if the terminal supports color */ + @ConfigDocIgnore Optional color(); }