You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/main/asciidoc/se/guides/webclient.adoc
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,6 +85,18 @@ cd helidon-quickstart-se
85
85
The Helidon quickstart is a greeting application supporting several HTTP requests such as GET and PUT. Using it will
86
86
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.
87
87
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
+
88
100
==== Add ClientExample class
89
101
90
102
In `io.helidon.examples.quickstart.se` package, create a new class named ClientExample. This class will use the
0 commit comments