From 5f890128b7f96dbf690a08fb4b0105472282ec5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mari=C3=A1n=20Macik?= Date: Wed, 23 Nov 2022 13:15:52 +0100 Subject: [PATCH] SRVLOGIC-63 - Binary Cloud Events do not work with default messaging dependencies --- .../downstream-post-create-project.adoc | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/modules/serverless-logic/pages/_common-content/downstream-post-create-project.adoc b/modules/serverless-logic/pages/_common-content/downstream-post-create-project.adoc index 48aad1d6..09ef72ae 100644 --- a/modules/serverless-logic/pages/_common-content/downstream-post-create-project.adoc +++ b/modules/serverless-logic/pages/_common-content/downstream-post-create-project.adoc @@ -45,3 +45,25 @@ ... ---- ++ +// Needed only for Developer Preview 3 +. *[Optional]* If you want to use Binary CloudEvents (where the event data is stored in the message body, and event attributes are stored as part of message metadata), you need to upgrade the version of the `quarkus-reactive-messaging-http` dependency: ++ +.Override of `quarkus-reactive-messaging-http` in `pom.xml` file +[source,xml,subs="attributes+"] +---- + + ... + + + ... + + io.quarkiverse.reactivemessaging.http + quarkus-reactive-messaging-http + 1.0.8 + + + + ... + +----