File tree 8 files changed +11
-13
lines changed
extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test
8 files changed +11
-13
lines changed Original file line number Diff line number Diff line change 93
93
<!-- GraalVM sdk 23.1.2 has a minimum JDK requirement of 17+ at runtime -->
94
94
<graal-sdk .version>23.1.2</graal-sdk .version>
95
95
<gizmo .version>1.8.0</gizmo .version>
96
- <jackson-bom .version>2.17.2 </jackson-bom .version>
96
+ <jackson-bom .version>2.18.0 </jackson-bom .version>
97
97
<commons-logging-jboss-logging .version>1.0.0.Final</commons-logging-jboss-logging .version>
98
98
<commons-lang3 .version>3.17.0</commons-lang3 .version>
99
99
<commons-codec .version>1.17.1</commons-codec .version>
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public JavaArchive get() {
24
24
25
25
@ Test
26
26
public void test () {
27
- RestAssured .with ().contentType ("application/json" ).body ("{\" name \" : \" brie \" }" ).put ("/fromage" )
27
+ RestAssured .with ().contentType ("application/json" ).body ("{\" price \" : \" ten \" }" ).put ("/fromage" )
28
28
.then ().statusCode (400 );
29
29
}
30
30
}
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public JavaArchive get() {
30
30
31
31
@ Test
32
32
public void test () {
33
- RestAssured .with ().contentType ("application/json" ).body ("{\" name \" : \" brie \" }" ).put ("/fromage" )
33
+ RestAssured .with ().contentType ("application/json" ).body ("{\" price \" : \" ten \" }" ).put ("/fromage" )
34
34
.then ().statusCode (406 );
35
35
}
36
36
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public JavaArchive get() {
31
31
32
32
@ Test
33
33
public void test () {
34
- RestAssured .with ().contentType ("application/json" ).body ("{\" name \" : \" brie \" }" ).put ("/fromage" )
34
+ RestAssured .with ().contentType ("application/json" ).body ("{\" price \" : \" ten \" }" ).put ("/fromage" )
35
35
.then ().statusCode (999 );
36
36
}
37
37
Original file line number Diff line number Diff line change 1
1
package io .quarkus .resteasy .reactive .jackson .deployment .test ;
2
2
3
3
public class FroMage {
4
- public String name ;
4
+ public Integer price ;
5
5
6
- // required for Jackson
7
- // public FroMage() {}
8
- public FroMage (String name ) {
9
- this .name = name ;
6
+ public FroMage (Integer price ) {
7
+ this .price = price ;
10
8
}
11
9
12
10
@ Override
13
11
public String toString () {
14
- return "FroMage: " + name ;
12
+ return "FroMage: " + price ;
15
13
}
16
14
}
Original file line number Diff line number Diff line change 38
38
<maven .compiler.target>11</maven .compiler.target>
39
39
<maven .compiler.release>11</maven .compiler.release>
40
40
<maven-core .version>3.9.9</maven-core .version>
41
- <jackson-bom .version>2.17.2 </jackson-bom .version>
41
+ <jackson-bom .version>2.18.0 </jackson-bom .version>
42
42
<smallrye-beanbag .version>1.5.2</smallrye-beanbag .version>
43
43
<junit .jupiter.version>5.11.0</junit .jupiter.version>
44
44
</properties >
Original file line number Diff line number Diff line change 61
61
<vertx .version>4.5.9</vertx .version>
62
62
<rest-assured .version>5.5.0</rest-assured .version>
63
63
<commons-logging-jboss-logging .version>1.0.0.Final</commons-logging-jboss-logging .version>
64
- <jackson-bom .version>2.17.2 </jackson-bom .version>
64
+ <jackson-bom .version>2.18.0 </jackson-bom .version>
65
65
<smallrye-stork .version>2.7.0</smallrye-stork .version>
66
66
<jakarta .validation-api.version>3.0.2</jakarta .validation-api.version>
67
67
<yasson .version>3.0.4</yasson .version>
Original file line number Diff line number Diff line change 49
49
50
50
<!-- Versions -->
51
51
<assertj .version>3.26.3</assertj .version>
52
- <jackson-bom .version>2.17.2 </jackson-bom .version>
52
+ <jackson-bom .version>2.18.0 </jackson-bom .version>
53
53
<jakarta .enterprise.cdi-api.version>4.1.0</jakarta .enterprise.cdi-api.version>
54
54
<junit .version>5.11.0</junit .version>
55
55
<commons-compress .version>1.27.1</commons-compress .version>
You can’t perform that action at this time.
0 commit comments