diff --git a/pom.xml b/pom.xml
index 3d548512662cfa56f57e80f4920d8916c119e337..ff026adf53e111d763bf1da1035a2110c37939b2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -83,6 +83,17 @@
 	      <artifactId>rest-assured</artifactId>
 	      <scope>test</scope>
 	    </dependency>
+	    <dependency>
+		    <groupId>io.quarkus</groupId>
+		    <artifactId>quarkus-config-yaml</artifactId>
+		</dependency>
+		<!-- https://mvnrepository.com/artifact/io.quarkus/quarkus-jackson -->
+		<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider -->
+		<dependency>
+		    <groupId>com.fasterxml.jackson.jaxrs</groupId>
+		    <artifactId>jackson-jaxrs-json-provider</artifactId>
+		</dependency>
+
 		<dependency>
 			<groupId>org.projectlombok</groupId>
 			<artifactId>lombok</artifactId>
@@ -100,6 +111,12 @@
 			<artifactId>log4j-core</artifactId>
 			<version>${log4j.version}</version>
 		</dependency>
+		<!-- https://mvnrepository.com/artifact/org.apache.cxf/cxf-rt-rs-client -->
+		<dependency>
+		    <groupId>org.apache.cxf</groupId>
+		    <artifactId>cxf-rt-rs-client</artifactId>
+		    <version>3.5.2</version>
+		</dependency>
 	</dependencies>
 	<build>
 		<plugins>