Skip to content

Commit 009b241

Browse files
committed
Sync documentation of main branch
1 parent 8218963 commit 009b241

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

_generated-doc/main/infra/quarkus-all-build-items.adoc

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3407,8 +3407,19 @@ _No Javadoc found_
34073407
a| https://github.com/quarkusio/quarkus/blob/main/extensions/arc/deployment/src/main/java/io/quarkus/arc/deployment/KnownCompatibleBeanArchiveBuildItem.java[`io.quarkus.arc.deployment.KnownCompatibleBeanArchiveBuildItem`, window="_blank"]
34083408
[.description]
34093409
--
3410-
Marks a bean archive with given coordinates (groupId, artifactId and optionally classifier) as known compatible with Quarkus. This is only useful for bean archives whose `beans.xml` defines a bean discovery mode of `all` ; bean archives with discovery mode of `none` or `annotated` are always compatible. If a bean archive is known to be compatible with Quarkus, no warning about `all` discovery is logged during application build.
3411-
-- a|`java.lang.String groupId`
3410+
Marks a bean archive with given coordinates (groupId, artifactId and optionally classifier) as known compatible with Quarkus. If a bean archive is known to be compatible with Quarkus, any error logging or exception throwing related to that compatibility is skipped.
3411+
This is useful in the following cases:
3412+
* Bean archives whose `beans.xml` defines a bean discovery mode of `all` ; bean archives with discovery mode of `none` or `annotated` are always compatible.
3413+
3414+
3415+
* Bean archives that contain the unsupported `jakarta.enterprise.inject.Specializes` annotation.
3416+
3417+
3418+
-- a|`java.util.Set<Reason> reasons`
3419+
3420+
_No Javadoc found_
3421+
3422+
`java.lang.String groupId`
34123423

34133424
_No Javadoc found_
34143425

_versions/main/guides/security-openid-connect-providers.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The configuration of such providers can become complex, very technical and diffi
2525

2626
`quarkus.oidc.provider` configuration property has been introduced to refer to well-known OpenID Connect and OAuth2 providers. This property can be used to refer to a provider such as `github` with only a minimum number of customizations required, typically, an account specific `client id`, `client secret` and some properties have to be set to complete the configuration.
2727

28-
This property can be used in `application.properties`, in xref:security-openid-connect-multitenancy.adoc[multi-tenant] set-ups if more than one provider has to be configured (for example, see https://docs.quarkiverse.io/quarkus-renarde/dev/security.html#_using_oidc_for_login[Quarkus Renarde security documentation]), in custom xref:security-openid-connect-multitenancy.adoc#tenant-config-resolver[TenantConfigResolvers] if the tenant configurations are created dynamically.
28+
This property can be used in `application.properties` and in custom xref:security-openid-connect-multitenancy.adoc#tenant-config-resolver[TenantConfigResolvers] if the tenant configurations are created dynamically.
2929

3030
== Well Known Providers
3131

_versions/main/guides/web.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ Here is a simple example of a Qute template:
8383

8484
=== Model-View-Controller (MVC)
8585

86-
The MVC approach is also made very easy with Quarkus thanks to https://docs.quarkiverse.io/quarkus-renarde/dev/index.html[the Renarde extension], a Rails-like framework using Qute.
86+
The MVC approach is also made very easy with Quarkus thanks to Qute.
8787

88-
Associated with the https://docs.quarkiverse.io/quarkus-web-bundler/dev/[Web Bundler extension], the road is open to build modern web applications for all your needs. Here is what a simple Renarde controller looks like:
88+
Associated with the https://docs.quarkiverse.io/quarkus-web-bundler/dev/[Web Bundler extension], the road is open to build modern web applications for all your needs.
8989

9090
.src/main/java/rest/Todos.java
9191
[source,java]
@@ -155,7 +155,7 @@ public class Todos extends Controller {
155155
}
156156
----
157157

158-
NOTE: Check out https://www.youtube.com/watch?v=JNmHNSmK180[Quarkus Insights Episode #178]. First part is a hands-on demonstration of creating a CMS with Renarde. You can also give it a try using https://github.com/quarkusio/quarkus-web-lab[the web-lab repo]).
158+
NOTE: Check out https://www.youtube.com/watch?v=JNmHN5mK180[Quarkus Insights Episode #178]. You can also give it a try using https://github.com/quarkusio/quarkus-web-lab[the web-lab repo].
159159

160160
== Single Page Applications
161161

0 commit comments

Comments
 (0)