This is an automated email from the ASF dual-hosted git repository. astefanutti pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 471c2bae09b436d083572a96ff65e094b0adcb7c Author: Antonin Stefanutti <anto...@stefanutti.fr> AuthorDate: Mon Jun 28 13:42:29 2021 +0200 fix: Correct quarkus-logging-json dependency resolution --- pkg/trait/logging.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/trait/logging.go b/pkg/trait/logging.go index f7f103a..d092aac 100644 --- a/pkg/trait/logging.go +++ b/pkg/trait/logging.go @@ -29,7 +29,7 @@ const ( envVarQuarkusLogConsoleFormat = "QUARKUS_LOG_CONSOLE_FORMAT" envVarQuarkusLogConsoleJson = "QUARKUS_LOG_CONSOLE_JSON" envVarQuarkusLogConsoleJsonPrettyPrint = "QUARKUS_LOG_CONSOLE_JSON_PRETTY_PRINT" - depQuarkusLoggingJson = "quarkus-logging-json" + depQuarkusLoggingJson = "mvn:io.quarkus:quarkus-logging-json" defaultLogLevel = "INFO" )