From 28f9b0c5c7715dbefbede1e9327e26cd525f832c Mon Sep 17 00:00:00 2001
From: Zachary Sabourin <zachary.sabourin@eclipse-foundation.org>
Date: Tue, 30 Jul 2024 17:16:45 +0000
Subject: [PATCH] fix: Add missing serialization extension in efservices module

---
 caching/pom.xml                | 2 +-
 core/pom.xml                   | 2 +-
 efservices/pom.xml             | 8 ++++++--
 http/pom.xml                   | 2 +-
 persistence/deployment/pom.xml | 2 +-
 persistence/pom.xml            | 2 +-
 persistence/runtime/pom.xml    | 2 +-
 pom.xml                        | 2 +-
 testing/pom.xml                | 2 +-
 utils/pom.xml                  | 2 +-
 10 files changed, 15 insertions(+), 11 deletions(-)

diff --git a/caching/pom.xml b/caching/pom.xml
index c7ff3ff9..f716e5ed 100644
--- a/caching/pom.xml
+++ b/caching/pom.xml
@@ -9,7 +9,7 @@
     <parent>
         <groupId>org.eclipsefoundation</groupId>
         <artifactId>quarkus-commons</artifactId>
-        <version>1.1.3-SNAPSHOT</version>
+        <version>1.1.3</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <properties>
diff --git a/core/pom.xml b/core/pom.xml
index 8cf3e0f9..355b51be 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -9,7 +9,7 @@
     <parent>
         <groupId>org.eclipsefoundation</groupId>
         <artifactId>quarkus-commons</artifactId>
-        <version>1.1.3-SNAPSHOT</version>
+        <version>1.1.3</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <properties>
diff --git a/efservices/pom.xml b/efservices/pom.xml
index 6ee5e13d..5d08aa64 100644
--- a/efservices/pom.xml
+++ b/efservices/pom.xml
@@ -8,7 +8,7 @@
   <parent>
     <groupId>org.eclipsefoundation</groupId>
     <artifactId>quarkus-commons</artifactId>
-    <version>1.1.3-SNAPSHOT</version>
+    <version>1.1.3</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
   <properties>
@@ -22,7 +22,11 @@
     </dependency>
     <dependency>
       <groupId>io.quarkus</groupId>
-      <artifactId>quarkus-rest-client-reactive</artifactId>
+      <artifactId>quarkus-rest-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.quarkus</groupId>
+      <artifactId>quarkus-rest-client-jackson</artifactId>
     </dependency>
     
     <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
diff --git a/http/pom.xml b/http/pom.xml
index 94dbfeb1..b0745297 100644
--- a/http/pom.xml
+++ b/http/pom.xml
@@ -9,7 +9,7 @@
     <parent>
         <groupId>org.eclipsefoundation</groupId>
         <artifactId>quarkus-commons</artifactId>
-        <version>1.1.3-SNAPSHOT</version>
+        <version>1.1.3</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <properties>
diff --git a/persistence/deployment/pom.xml b/persistence/deployment/pom.xml
index 0adf23ab..3330392f 100644
--- a/persistence/deployment/pom.xml
+++ b/persistence/deployment/pom.xml
@@ -11,7 +11,7 @@
     <parent>
         <groupId>org.eclipsefoundation</groupId>
         <artifactId>quarkus-persistence-parent</artifactId>
-        <version>1.1.3-SNAPSHOT</version>
+        <version>1.1.3</version>
     </parent>
     <artifactId>quarkus-persistence-deployment</artifactId>
     <name>Persistence - Deployment</name>
diff --git a/persistence/pom.xml b/persistence/pom.xml
index e127f1a4..3fe75695 100644
--- a/persistence/pom.xml
+++ b/persistence/pom.xml
@@ -10,7 +10,7 @@
     <parent>
         <groupId>org.eclipsefoundation</groupId>
         <artifactId>quarkus-commons</artifactId>
-        <version>1.1.3-SNAPSHOT</version>
+        <version>1.1.3</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <modules>
diff --git a/persistence/runtime/pom.xml b/persistence/runtime/pom.xml
index fa4de371..32719122 100644
--- a/persistence/runtime/pom.xml
+++ b/persistence/runtime/pom.xml
@@ -7,7 +7,7 @@
     <parent>
         <groupId>org.eclipsefoundation</groupId>
         <artifactId>quarkus-persistence-parent</artifactId>
-        <version>1.1.3-SNAPSHOT</version>
+        <version>1.1.3</version>
     </parent>
     <artifactId>quarkus-persistence</artifactId>
     <name>Persistence - Runtime</name>
diff --git a/pom.xml b/pom.xml
index a91662b6..2828463c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
     <groupId>org.eclipsefoundation</groupId>
     <artifactId>quarkus-commons</artifactId>
     <name>Java SDK Commons</name>
-    <version>1.1.3-SNAPSHOT</version>
+    <version>1.1.3</version>
     <packaging>pom</packaging>
     <properties>
         <compiler-plugin.version>3.11.0</compiler-plugin.version>
diff --git a/testing/pom.xml b/testing/pom.xml
index 7202c23b..9cdace58 100644
--- a/testing/pom.xml
+++ b/testing/pom.xml
@@ -9,7 +9,7 @@
     <parent>
         <groupId>org.eclipsefoundation</groupId>
         <artifactId>quarkus-commons</artifactId>
-        <version>1.1.3-SNAPSHOT</version>
+        <version>1.1.3</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <properties>
diff --git a/utils/pom.xml b/utils/pom.xml
index 717d4d78..f18a9401 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -9,7 +9,7 @@
   <parent>
     <groupId>org.eclipsefoundation</groupId>
     <artifactId>quarkus-commons</artifactId>
-    <version>1.1.3-SNAPSHOT</version>
+    <version>1.1.3</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
   <dependencies>
-- 
GitLab