From 8ec9ac9b8884da37ec6ac9c186aa01ec3cda5c1c Mon Sep 17 00:00:00 2001 From: Jonas Hinterdorfer Date: Mon, 1 Dec 2025 12:08:32 +0100 Subject: [PATCH] config: set fixed HTTP port for tests and remove unused Lombok dependency --- .idea/compiler.xml | 8 -------- pom.xml | 24 +++++++++++------------ src/test/resources/application.properties | 4 ++++ 3 files changed, 15 insertions(+), 21 deletions(-) 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