Skip to content

Commit

Permalink
Add missing dependency in SE guide
Browse files Browse the repository at this point in the history
  • Loading branch information
tvallin committed Nov 8, 2024
1 parent d2fbe8b commit d6c6d8e
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion docs/src/main/asciidoc/se/guides/security-oidc.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -230,14 +230,28 @@ cd helidon-quickstart-se
Update the pom.xml file and add the following Helidon dependency to the `<dependencies>` section.
[source,xml]
.Add the following dependency to `pom.xml`:
.Add the following dependencies to `pom.xml`:
----
<dependency>
<groupId>io.helidon.webserver</groupId>
<artifactId>helidon-webserver-security</artifactId>
</dependency>
<dependency>
<groupId>io.helidon.security.providers</groupId>
<artifactId>helidon-security-providers-oidc</artifactId>
</dependency>
----
[source,xml]
.Remove the `test` scope from `helidon-webclient` dependency
----
<dependency>
<groupId>io.helidon.webclient</groupId>
<artifactId>helidon-webclient</artifactId>
<scope>test</scope> <!-- remove this line -->
</dependency>
----
=== Add OIDC Security Properties
The OIDC security provider configuration can be joined to helidon configuration file.
Expand Down

0 comments on commit d6c6d8e

Please sign in to comment.