Skip to content

Commit 91faa48

Browse files
committed
Sync web site with Quarkus documentation
1 parent f85bfc8 commit 91faa48

11 files changed

+18
-18
lines changed

_generated-doc/latest/config/quarkus-all-config.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13849,7 +13849,7 @@ Environment variable: `+++QUARKUS_KEYCLOAK_DEVSERVICES_IMAGE_NAME+++`
1384913849
endif::add-copy-button-to-env-var[]
1385013850
--
1385113851
|string
13852-
|`+++quay.io/keycloak/keycloak:26.3.4+++`
13852+
|`+++quay.io/keycloak/keycloak:26.4.0+++`
1385313853

1385413854
a|icon:lock[title=Fixed at build time] [[quarkus-devservices-keycloak_quarkus-keycloak-devservices-keycloak-x-image]] [.property-path]##link:#quarkus-devservices-keycloak_quarkus-keycloak-devservices-keycloak-x-image[`quarkus.keycloak.devservices.keycloak-x-image`]##
1385513855
ifdef::add-copy-button-to-config-props[]

_generated-doc/latest/config/quarkus-devservices-keycloak.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Environment variable: `+++QUARKUS_KEYCLOAK_DEVSERVICES_IMAGE_NAME+++`
4747
endif::add-copy-button-to-env-var[]
4848
--
4949
|string
50-
|`+++quay.io/keycloak/keycloak:26.3.4+++`
50+
|`+++quay.io/keycloak/keycloak:26.4.0+++`
5151

5252
a|icon:lock[title=Fixed at build time] [[quarkus-devservices-keycloak_quarkus-keycloak-devservices-keycloak-x-image]] [.property-path]##link:#quarkus-devservices-keycloak_quarkus-keycloak-devservices-keycloak-x-image[`quarkus.keycloak.devservices.keycloak-x-image`]##
5353
ifdef::add-copy-button-to-config-props[]

_generated-doc/latest/config/quarkus-devservices-keycloak_quarkus.keycloak.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Environment variable: `+++QUARKUS_KEYCLOAK_DEVSERVICES_IMAGE_NAME+++`
4747
endif::add-copy-button-to-env-var[]
4848
--
4949
|string
50-
|`+++quay.io/keycloak/keycloak:26.3.4+++`
50+
|`+++quay.io/keycloak/keycloak:26.4.0+++`
5151

5252
a|icon:lock[title=Fixed at build time] [[quarkus-devservices-keycloak_quarkus-keycloak-devservices-keycloak-x-image]] [.property-path]##link:#quarkus-devservices-keycloak_quarkus-keycloak-devservices-keycloak-x-image[`quarkus.keycloak.devservices.keycloak-x-image`]##
5353
ifdef::add-copy-button-to-config-props[]

_guides/_attributes.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Common attributes.
22
// --> No blank lines (it ends the document header)
33
:project-name: Quarkus
4-
:quarkus-version: 3.28.2
4+
:quarkus-version: 3.28.3
55
:quarkus-platform-groupid: io.quarkus.platform
66
// .
77
:maven-version: 3.9.11
@@ -11,14 +11,14 @@
1111
:mandrel-flavor: jdk-21
1212
:surefire-version: 3.5.4
1313
:gradle-version: 9.1.0
14-
:elasticsearch-version: 9.1.4
15-
:elasticsearch-image: docker.io/elastic/elasticsearch:9.1.4
14+
:elasticsearch-version: 9.1.5
15+
:elasticsearch-image: docker.io/elastic/elasticsearch:9.1.5
1616
:opensearch-image: docker.io/opensearchproject/opensearch:3.1.0
1717
:infinispan-version: ${infinispan.version}
1818
:infinispan-protostream-version: ${infinispan.protostream.version}
19-
:logstash-image: docker.io/elastic/logstash:9.1.4
20-
:kibana-image: docker.io/elastic/kibana:9.1.4
21-
:keycloak-docker-image: quay.io/keycloak/keycloak:26.3.4
19+
:logstash-image: docker.io/elastic/logstash:9.1.5
20+
:kibana-image: docker.io/elastic/kibana:9.1.5
21+
:keycloak-docker-image: quay.io/keycloak/keycloak:26.4.0
2222
:jandex-version: 3.5.0
2323
:jandex-gradle-plugin-version: 1.0.0
2424
:kotlin-version: 2.2.20

_guides/cassandra.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ in use. Also, never use both annotation processors together.
206206
[source,xml]
207207
----
208208
<dependency>
209-
<groupId>com.datastax.oss</groupId>
209+
<groupId>org.apache.cassandra</groupId>
210210
<artifactId>java-driver-mapper-runtime</artifactId>
211211
</dependency>
212212
----
@@ -476,7 +476,7 @@ Now let's add a simple web page to interact with our `FruitResource`.
476476

477477
Quarkus automatically serves static resources located under the `META-INF/resources` directory. In
478478
the `src/main/resources/META-INF/resources` directory, add a `fruits.html` file with the contents
479-
from link:src/main/resources/META-INF/resources/fruits.html[this file] in it.
479+
from link:https://github.com/datastax/cassandra-quarkus/blob/main/quickstart/src/main/resources/META-INF/resources/fruits.html[this file] in it.
480480

481481
You can now interact with your REST service:
482482

@@ -631,7 +631,7 @@ curl -X GET http://localhost:8080/reactive-fruits
631631

632632
Now let's add a simple web page to interact with our `ReactiveFruitResource`. In the
633633
`src/main/resources/META-INF/resources` directory, add a `reactive-fruits.html` file with the
634-
contents from link:src/main/resources/META-INF/resources/reactive-fruits.html[this file] in it.
634+
contents from link:https://github.com/datastax/cassandra-quarkus/blob/main/quickstart/src/main/resources/META-INF/resources/reactive-fruits.html[this file] in it.
635635

636636
You can now interact with your reactive REST service:
637637

_guides/security-keycloak-authorization.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ docker run --name keycloak \
319319
quay.io/keycloak/keycloak:{keycloak.version} \ <1>
320320
start --hostname-strict=false --https-key-store-file=/etc/keycloak-keystore.jks <2>
321321
----
322-
<1> For `keycloak.version`, ensure the version is `26.3.4` or later.
322+
<1> For `keycloak.version`, ensure the version is `26.4.0` or later.
323323
<2> For Keycloak keystore, use the `keycloak-keystore.jks` file located at https://github.com/quarkusio/quarkus-quickstarts/blob/main/security-keycloak-authorization-quickstart/config/keycloak-keystore.jks[quarkus-quickstarts/security-keycloak-authorization-quickstart/config].
324324

325325
.Accessing the Keycloak server

_guides/security-oidc-bearer-token-authentication-tutorial.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ For more information, see the <<bearer-token-tutorial-keycloak-dev-mode>> sectio
217217
docker run --name keycloak -e KC_BOOTSTRAP_ADMIN_USERNAME=admin -e KC_BOOTSTRAP_ADMIN_PASSWORD=admin -p 8180:8080 quay.io/keycloak/keycloak:{keycloak.version} start-dev
218218
----
219219
====
220-
* Where the `keycloak.version` is set to version `26.3.4` or later.
220+
* Where the `keycloak.version` is set to version `26.4.0` or later.
221221
. You can access your Keycloak server at http://localhost:8180[localhost:8180].
222222
. To access the Keycloak Administration console, log in as the `admin` user by using the following login credentials:
223223

_guides/security-oidc-code-flow-authentication-tutorial.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ To start a Keycloak server, use Docker and run the following command:
201201
docker run --name keycloak -e KC_BOOTSTRAP_ADMIN_USERNAME=admin -e KC_BOOTSTRAP_ADMIN_PASSWORD=admin -p 8180:8080 quay.io/keycloak/keycloak:{keycloak.version} start-dev
202202
----
203203

204-
where `keycloak.version` is set to `26.3.4` or later.
204+
where `keycloak.version` is set to `26.4.0` or later.
205205

206206
You can access your Keycloak Server at http://localhost:8180[localhost:8180].
207207

_guides/security-oidc-expanded-configuration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ In this case, Quarkus attempts to refresh the verification key set, but blocks a
852852
|Property | Default |Description
853853

854854
|quarkus.oidc.token.allow-jwt-introspection |true| Allow JWT introspection
855-
|quarkus.oidc.token.require-jwt-introspection-only |true| Require JWT introspection only
855+
|quarkus.oidc.token.require-jwt-introspection-only |false| Require JWT introspection only
856856
|quarkus.oidc.token.allow-opaque-token-introspection |false| Allow JWT introspection
857857
|====
858858

_guides/security-openid-connect-client.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ To start a Keycloak Server, you can use Docker and just run the following comman
505505
docker run --name keycloak -e KC_BOOTSTRAP_ADMIN_USERNAME=admin -e KC_BOOTSTRAP_ADMIN_PASSWORD=admin -p 8180:8080 quay.io/keycloak/keycloak:{keycloak.version} start-dev
506506
----
507507

508-
Set `{keycloak.version}` to `26.3.4` or later.
508+
Set `{keycloak.version}` to `26.4.0` or later.
509509

510510
You can access your Keycloak Server at http://localhost:8180[localhost:8180].
511511

0 commit comments

Comments
 (0)