diff --git a/frameworks/quarkus-jvm/pom.xml b/frameworks/quarkus-jvm/pom.xml
index e6298136..9dae1152 100644
--- a/frameworks/quarkus-jvm/pom.xml
+++ b/frameworks/quarkus-jvm/pom.xml
@@ -2,6 +2,7 @@
+
4.0.0
com.httparena
@@ -39,17 +40,17 @@
org.xerial
sqlite-jdbc
- 3.47.2.0
+ 3.51.3.0
org.postgresql
postgresql
- 42.7.4
+ 42.7.10
com.zaxxer
HikariCP
- 6.2.1
+ 7.0.2
@@ -70,4 +71,5 @@
+
diff --git a/frameworks/quarkus-jvm/src/main/java/com/httparena/BenchmarkResource.java b/frameworks/quarkus-jvm/src/main/java/com/httparena/BenchmarkResource.java
index 813e3671..41cc2087 100644
--- a/frameworks/quarkus-jvm/src/main/java/com/httparena/BenchmarkResource.java
+++ b/frameworks/quarkus-jvm/src/main/java/com/httparena/BenchmarkResource.java
@@ -3,7 +3,6 @@
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import io.smallrye.common.annotation.NonBlocking;
-import io.vertx.core.buffer.Buffer;
import jakarta.annotation.PostConstruct;
import jakarta.ws.rs.*;
import jakarta.ws.rs.core.MediaType;
@@ -14,21 +13,17 @@
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
+import java.io.OutputStream;
import java.net.URI;
-import java.nio.charset.StandardCharsets;
-import java.nio.file.Files;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.*;
-import java.util.concurrent.ConcurrentHashMap;
@Path("/")
public class BenchmarkResource {
- private static final Buffer OK_BUFFER = Buffer.buffer("ok".getBytes(StandardCharsets.UTF_8));
-
private final ObjectMapper mapper = new ObjectMapper();
private List