Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent version strings in quarkus-artemis-jms.adoc from being replaced with the predefined attributes. #694

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/modules/ROOT/pages/quarkus-artemis-jms.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,14 @@ it is recommended to add the following BOM to your project, *below the Quarkus B
<dependency>
<groupId>io.quarkus.platform</groupId>
<artifactId>quarkus-bom</artifactId>
<version>${quarkus-version}</version>
<version>$\{quarkus-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<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>
Expand All @@ -177,8 +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
8 changes: 4 additions & 4 deletions docs/modules/ROOT/pages/quarkus-artemis-ra.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ it is recommended to add the following BOM to your project, *below the Quarkus B
<dependency>
<groupId>io.quarkus.platform</groupId>
<artifactId>quarkus-bom</artifactId>
<version>${quarkus-version}</version>
<version>$\{quarkus-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<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>
Expand All @@ -50,8 +50,8 @@ 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
Loading