Skip to content

Commit

Permalink
Merge pull request #876 from emmartins/WFLY-19015
Browse files Browse the repository at this point in the history
[WFLY-19015] Replaces usage of non-user expansion BOM, with MP BOM
  • Loading branch information
emmartins authored Feb 8, 2024
2 parents 1fb8663 + 2cfe4a4 commit 1f55d63
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
10 changes: 5 additions & 5 deletions micrometer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<version.server>31.0.0.Final</version.server>
<!-- The versions for the BOMs, Packs and Plugins -->
<version.bom.ee>${version.server}</version.bom.ee>
<version.bom.microprofile>${version.server}</version.bom.microprofile>
<version.plugin.wildfly>4.2.1.Final</version.plugin.wildfly>
<version.plugin.wildfly-jar>10.0.0.Final</version.plugin.wildfly-jar>
<version.pack.cloud>6.0.0.Final</version.pack.cloud>
Expand Down Expand Up @@ -88,23 +89,22 @@

<dependencyManagement>
<dependencies>
<!-- importing the ee-with-tools BOM adds specs and other useful artifacts as managed dependencies -->
<dependency>
<groupId>org.wildfly.bom</groupId>
<artifactId>wildfly-ee-with-tools</artifactId>
<version>${version.bom.ee}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<!-- Import micrometer dependency information -->
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-common-expansion-dependency-management</artifactId>
<version>${version.server}</version>
<groupId>org.wildfly.bom</groupId>
<artifactId>wildfly-microprofile</artifactId>
<version>${version.bom.microprofile}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down
9 changes: 5 additions & 4 deletions opentelemetry-tracing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<version.server>31.0.0.Final</version.server>
<!-- The versions for the BOMs, Packs and Plugins -->
<version.bom.ee>${version.server}</version.bom.ee>
<version.bom.microprofile>${version.server}</version.bom.microprofile>
<version.plugin.wildfly>4.2.1.Final</version.plugin.wildfly>
<version.plugin.wildfly-jar>10.0.0.Final</version.plugin.wildfly-jar>
<version.pack.cloud>6.0.0.Final</version.pack.cloud>
Expand Down Expand Up @@ -86,19 +87,19 @@

<dependencyManagement>
<dependencies>
<!-- importing the ee-with-tools BOM adds specs and other useful artifacts as managed dependencies -->
<dependency>
<groupId>org.wildfly.bom</groupId>
<artifactId>wildfly-ee-with-tools</artifactId>
<version>${version.bom.ee}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<!-- Import opentelemetry dependency information -->
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-common-expansion-dependency-management</artifactId>
<version>${version.server}</version>
<groupId>org.wildfly.bom</groupId>
<artifactId>wildfly-microprofile</artifactId>
<version>${version.bom.microprofile}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down

0 comments on commit 1f55d63

Please sign in to comment.