diff --git a/.idea/compiler.xml b/.idea/compiler.xml
index 8db0706..54c67d7 100644
--- a/.idea/compiler.xml
+++ b/.idea/compiler.xml
@@ -6,14 +6,6 @@
-
-
-
-
-
-
-
-
diff --git a/pom.xml b/pom.xml
index 4bbc826..703ad7b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -55,12 +55,6 @@
io.quarkus
quarkus-arc
-
- org.projectlombok
- lombok
- 1.18.26
- provided
-
io.quarkus
quarkus-junit5
@@ -102,13 +96,17 @@
${compiler-plugin.version}
true
-
-
- org.projectlombok
- lombok
- 1.18.26
-
-
+ ${maven.compiler.release}
+ true
+ ${env.JAVA_HOME}/bin/javac
+
+ --add-opens
+ jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED
+ --add-opens
+ jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
+ --add-opens
+ jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
+
diff --git a/src/test/resources/application.properties b/src/test/resources/application.properties
index 5450de7..4b321c2 100644
--- a/src/test/resources/application.properties
+++ b/src/test/resources/application.properties
@@ -14,3 +14,7 @@ quarkus.hibernate-orm.sql-load-script=
quarkus.hibernate-orm.log.sql=true
quarkus.hibernate-orm.log.bind-parameters=true
+# Use a fixed HTTP port for tests (set to 8888 as requested)
+quarkus.http.test-port=8888
+# Also set the runtime HTTP port for tests to the same value
+quarkus.http.port=8888