Skip to content

Commit 3f6134f

Browse files
committed
bump test pom versions
1 parent 6786bf1 commit 3f6134f

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

client/src/main/java/io/avaje/http/client/HttpClientContext.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* HelloDto dto = ctx.request()
2424
* .path("hello")
2525
* .queryParam("name", "Rob")
26-
* .queryParam("say", "Ki ora")
26+
* .queryParam("say", "Whats up")
2727
* .GET()
2828
* .bean(HelloDto.class);
2929
*
@@ -128,7 +128,7 @@ static HttpClientContext.Builder newBuilder() {
128128
* HelloDto dto = ctx.request()
129129
* .path("hello")
130130
* .queryParam("name", "Rob")
131-
* .queryParam("say", "Ki ora")
131+
* .queryParam("say", "Whats up")
132132
* .GET()
133133
* .bean(HelloDto.class);
134134
*
@@ -301,7 +301,7 @@ interface Builder {
301301
*
302302
* HelloDto dto = ctx.request()
303303
* .path("hello")
304-
* .queryParam("say", "Ki ora")
304+
* .queryParam("say", "Whats up")
305305
* .GET()
306306
* .bean(HelloDto.class);
307307
*

client/src/main/java/io/avaje/http/client/HttpClientRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* <pre>{@code
2020
*
2121
* HelloDto dto = clientContext.request()
22-
* .path("hello").queryParam("name", "Rob").queryParam("say", "Ki ora")
22+
* .path("hello").queryParam("name", "Rob").queryParam("say", "Whats up")
2323
* .GET()
2424
* .bean(HelloDto.class);
2525
*

client/src/main/java/io/avaje/http/client/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*
1414
* HelloDto dto = ctx.request()
1515
* .path("hello")
16-
* .queryParam("say", "Ki ora")
16+
* .queryParam("say", "Whats up")
1717
* .GET()
1818
* .bean(HelloDto.class);
1919
*

test/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
<dependency>
1717
<groupId>io.avaje</groupId>
1818
<artifactId>avaje-http-client</artifactId>
19-
<version>1.9-SNAPSHOT</version>
19+
<version>1.10-SNAPSHOT</version>
2020
</dependency>
2121

2222
<dependency>
2323
<groupId>io.avaje</groupId>
2424
<artifactId>avaje-http-client-gson</artifactId>
25-
<version>1.8</version>
25+
<version>1.9</version>
2626
</dependency>
2727

2828
<dependency>

0 commit comments

Comments
 (0)