diff --git a/bom/application/pom.xml b/bom/application/pom.xml
index f419dff321555..9927282edd429 100644
--- a/bom/application/pom.xml
+++ b/bom/application/pom.xml
@@ -93,7 +93,7 @@
23.1.2
1.8.0
- 2.17.2
+ 2.18.0
1.0.0.Final
3.17.0
1.17.1
diff --git a/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/ExceptionInReaderTest.java b/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/ExceptionInReaderTest.java
index 50f01a16723df..7a85837bc3730 100644
--- a/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/ExceptionInReaderTest.java
+++ b/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/ExceptionInReaderTest.java
@@ -24,7 +24,7 @@ public JavaArchive get() {
@Test
public void test() {
- RestAssured.with().contentType("application/json").body("{\"name\": \"brie\"}").put("/fromage")
+ RestAssured.with().contentType("application/json").body("{\"price\": \"ten\"}").put("/fromage")
.then().statusCode(400);
}
}
diff --git a/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/ExceptionInReaderWithCustomMapperTest.java b/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/ExceptionInReaderWithCustomMapperTest.java
index 3f81433845e81..9a2fc3f91d5c6 100644
--- a/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/ExceptionInReaderWithCustomMapperTest.java
+++ b/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/ExceptionInReaderWithCustomMapperTest.java
@@ -30,7 +30,7 @@ public JavaArchive get() {
@Test
public void test() {
- RestAssured.with().contentType("application/json").body("{\"name\": \"brie\"}").put("/fromage")
+ RestAssured.with().contentType("application/json").body("{\"price\": \"ten\"}").put("/fromage")
.then().statusCode(406);
}
diff --git a/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/ExceptionInReaderWithExcludedBuiltInAndIncludedCustomMapperTest.java b/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/ExceptionInReaderWithExcludedBuiltInAndIncludedCustomMapperTest.java
index e334002585c07..737ff3e84ef46 100644
--- a/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/ExceptionInReaderWithExcludedBuiltInAndIncludedCustomMapperTest.java
+++ b/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/ExceptionInReaderWithExcludedBuiltInAndIncludedCustomMapperTest.java
@@ -31,7 +31,7 @@ public JavaArchive get() {
@Test
public void test() {
- RestAssured.with().contentType("application/json").body("{\"name\": \"brie\"}").put("/fromage")
+ RestAssured.with().contentType("application/json").body("{\"price\": \"ten\"}").put("/fromage")
.then().statusCode(999);
}
diff --git a/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/FroMage.java b/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/FroMage.java
index b0770514f40e0..3dc2deece8c92 100644
--- a/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/FroMage.java
+++ b/extensions/resteasy-reactive/rest-jackson/deployment/src/test/java/io/quarkus/resteasy/reactive/jackson/deployment/test/FroMage.java
@@ -1,16 +1,14 @@
package io.quarkus.resteasy.reactive.jackson.deployment.test;
public class FroMage {
- public String name;
+ public Integer price;
- // required for Jackson
- // public FroMage() {}
- public FroMage(String name) {
- this.name = name;
+ public FroMage(Integer price) {
+ this.price = price;
}
@Override
public String toString() {
- return "FroMage: " + name;
+ return "FroMage: " + price;
}
}
diff --git a/independent-projects/extension-maven-plugin/pom.xml b/independent-projects/extension-maven-plugin/pom.xml
index 964a3bfb40cf4..c0199ed05e971 100644
--- a/independent-projects/extension-maven-plugin/pom.xml
+++ b/independent-projects/extension-maven-plugin/pom.xml
@@ -38,7 +38,7 @@
11
11
3.9.9
- 2.17.2
+ 2.18.0
1.5.2
5.11.0
diff --git a/independent-projects/resteasy-reactive/pom.xml b/independent-projects/resteasy-reactive/pom.xml
index 5a0c280640db0..f29e7fa211593 100644
--- a/independent-projects/resteasy-reactive/pom.xml
+++ b/independent-projects/resteasy-reactive/pom.xml
@@ -61,7 +61,7 @@
4.5.9
5.5.0
1.0.0.Final
- 2.17.2
+ 2.18.0
2.7.0
3.0.2
3.0.4
diff --git a/independent-projects/tools/pom.xml b/independent-projects/tools/pom.xml
index ede9b91ac4486..7765ca39007a9 100644
--- a/independent-projects/tools/pom.xml
+++ b/independent-projects/tools/pom.xml
@@ -49,7 +49,7 @@
3.26.3
- 2.17.2
+ 2.18.0
4.1.0
5.11.0
1.27.1