Skip to content

Commit

Permalink
fix(pom): Pull in the Quarkus BOM only in the Quarkus-related modules.
Browse files Browse the repository at this point in the history
Change-Id: If51f89d2975569a02e0226fd6673091a21277b82
  • Loading branch information
benkard committed Sep 24, 2023
1 parent 3045065 commit f277b70
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 12 deletions.
12 changes: 12 additions & 0 deletions deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
12 changes: 12 additions & 0 deletions examples/quarkus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
12 changes: 0 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
12 changes: 12 additions & 0 deletions runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit f277b70

Please sign in to comment.