From f277b704114113707ef48baa5b8a8b41903e0def Mon Sep 17 00:00:00 2001
From: Matthias Andreas Benkard <code@mail.matthias.benkard.de>
Date: Sun, 24 Sep 2023 20:58:35 +0200
Subject: fix(pom): Pull in the Quarkus BOM only in the Quarkus-related
 modules.

Change-Id: If51f89d2975569a02e0226fd6673091a21277b82
---
 deployment/pom.xml       | 12 ++++++++++++
 examples/quarkus/pom.xml | 12 ++++++++++++
 pom.xml                  | 12 ------------
 runtime/pom.xml          | 12 ++++++++++++
 4 files changed, 36 insertions(+), 12 deletions(-)

diff --git a/deployment/pom.xml b/deployment/pom.xml
index 11697c6..54d2502 100644
--- a/deployment/pom.xml
+++ b/deployment/pom.xml
@@ -20,6 +20,18 @@ SPDX-License-Identifier: LGPL-3.0-or-later
   <artifactId>quarkus-googlecloud-jsonlogging-deployment</artifactId>
   <name>Quarkus Google Cloud JSON Logging Extension - Deployment</name>
 
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>io.quarkus</groupId>
+        <artifactId>quarkus-bom</artifactId>
+        <version>${quarkus.version}</version>
+        <type>pom</type>
+        <scope>import</scope>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
   <dependencies>
     <dependency>
       <groupId>io.quarkus</groupId>
diff --git a/examples/quarkus/pom.xml b/examples/quarkus/pom.xml
index 70c923e..40b8286 100644
--- a/examples/quarkus/pom.xml
+++ b/examples/quarkus/pom.xml
@@ -20,6 +20,18 @@ SPDX-License-Identifier: GPL-3.0-or-later
   <artifactId>quarkus-googlecloud-jsonlogging-quarkus-example</artifactId>
   <name>Quarkus Google Cloud JSON Logging Extension - Quarkus Example</name>
 
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>io.quarkus</groupId>
+        <artifactId>quarkus-bom</artifactId>
+        <version>${quarkus.version}</version>
+        <type>pom</type>
+        <scope>import</scope>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
   <dependencies>
     <dependency>
       <groupId>io.quarkus</groupId>
diff --git a/pom.xml b/pom.xml
index 460241b..d054218 100644
--- a/pom.xml
+++ b/pom.xml
@@ -82,18 +82,6 @@ SPDX-License-Identifier: LGPL-3.0-or-later
     </snapshotRepository>
   </distributionManagement>
 
-  <dependencyManagement>
-    <dependencies>
-      <dependency>
-        <groupId>io.quarkus</groupId>
-        <artifactId>quarkus-bom</artifactId>
-        <version>${quarkus.version}</version>
-        <type>pom</type>
-        <scope>import</scope>
-      </dependency>
-    </dependencies>
-  </dependencyManagement>
-
   <build>
 
     <pluginManagement>
diff --git a/runtime/pom.xml b/runtime/pom.xml
index 474ff7a..226b653 100644
--- a/runtime/pom.xml
+++ b/runtime/pom.xml
@@ -20,6 +20,18 @@ SPDX-License-Identifier: LGPL-3.0-or-later
   <artifactId>quarkus-googlecloud-jsonlogging</artifactId>
   <name>Quarkus Google Cloud JSON Logging Extension - Runtime</name>
 
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>io.quarkus</groupId>
+        <artifactId>quarkus-bom</artifactId>
+        <version>${quarkus.version}</version>
+        <type>pom</type>
+        <scope>import</scope>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
   <dependencies>
     <dependency>
       <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId>
-- 
cgit v1.2.3