Skip to content

Commit 9446ac3

Browse files
committed
Fix wrong dependency scope in documentation
1 parent f5f4cd6 commit 9446ac3

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

docs/src/main/asciidoc/se/guides/webclient.adoc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,18 @@ cd helidon-quickstart-se
8585
The Helidon quickstart is a greeting application supporting several HTTP requests such as GET and PUT. Using it will
8686
be time-saving for this exercise as it will allow us to modify the project to demonstrate some of the Webclient features and usability, rather than start from scratch.
8787
88+
The quickstart example utilizes `WebClient` solely for testing purposes, with the dependency configured under the test
89+
scope. To use WebClient within your application, remove the test scope from the dependency in the `pom.xml`.
90+
91+
[source,xml]
92+
.Remove the `test` scope from WebClient dependency
93+
----
94+
<dependency>
95+
<groupId>io.helidon.webclient</groupId>
96+
<artifactId>helidon-webclient</artifactId>
97+
</dependency>
98+
----
99+
88100
==== Add ClientExample class
89101
90102
In `io.helidon.examples.quickstart.se` package, create a new class named ClientExample. This class will use the

0 commit comments

Comments
 (0)