Skip to content

Commit

Permalink
Use and document Artemis BOM, fixes #437
Browse files Browse the repository at this point in the history
  • Loading branch information
middagj committed Dec 19, 2024
1 parent 7c2ebb5 commit 5ef4fc6
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 9 deletions.
13 changes: 8 additions & 5 deletions bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,14 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-bom</artifactId>
<version>${artemis.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-core-client</artifactId>
Expand Down Expand Up @@ -102,11 +110,6 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-jakarta-ra</artifactId>
<version>${artemis.version}</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-server</artifactId>
Expand Down
12 changes: 10 additions & 2 deletions docs/modules/ROOT/pages/quarkus-artemis-jms.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,14 @@ it is recommended to add the following BOM to your project, *below the Quarkus B
<dependency>
<groupId>io.quarkiverse.artemis</groupId>
<artifactId>quarkus-artemis-bom</artifactId>
<version>{quarkus-artemis-version}</version>
<version>${quarkus-artemis-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-bom</artifactId>
<version>${artemis.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -170,7 +177,8 @@ Once the BOM is added, simply add the `io.quarkiverse.artemis:quarkus-artemis-jm
</dependency>
----

We recommend to set properties `quarkus.version` and `artemis.version` to the versions you are using/need to use. We also recommend to align `artemis.version` with the artemis server version used.
We recommend to set properties `quarkus.version` and `artemis.version` to the versions you are using/need to use.
We also recommend to align `artemis.version` with the artemis server version used.

If you are using `camel-quarkus`, we also recommend setting `camel-quarkus.platform.version` to the version of camel used.

Expand Down
13 changes: 11 additions & 2 deletions docs/modules/ROOT/pages/quarkus-artemis-ra.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,14 @@ it is recommended to add the following BOM to your project, *below the Quarkus B
<dependency>
<groupId>io.quarkiverse.artemis</groupId>
<artifactId>quarkus-artemis-bom</artifactId>
<version>{quarkus-artemis-version}</version>
<version>${quarkus-artemis-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-bom</artifactId>
<version>${artemis.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -43,7 +50,9 @@ Once the BOM is added, simply add the `io.quarkiverse.artemis:quarkus-artemis-ra
</dependency>
----

We recommend to set properties `quarkus.version` and `artemis.version` to the versions you are using/need to use. We also recommend to align `artemis.version` with the artemis server version used.
We recommend to set properties `quarkus.version` and `artemis.version` to the versions you are using/need to use.
We also recommend to align `artemis.version` with the artemis server version used.


== Configuration

Expand Down

0 comments on commit 5ef4fc6

Please sign in to comment.