From bb9b5a93f9801865c4dd105503da4d575981b180 Mon Sep 17 00:00:00 2001 From: veenm Date: Sat, 12 Apr 2025 23:48:48 +0200 Subject: [PATCH] properties fix --- .github/workflows/deploy-docker-to-tst.yml | 2 +- src/main/resources/application.properties | 13 +++---------- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/deploy-docker-to-tst.yml b/.github/workflows/deploy-docker-to-tst.yml index 035e191..7d7407e 100644 --- a/.github/workflows/deploy-docker-to-tst.yml +++ b/.github/workflows/deploy-docker-to-tst.yml @@ -83,7 +83,7 @@ jobs: - name: Build the Quarkus JAR and Docker image run: | VERSION=$(cat version.txt) - mvn clean package -DskipTests + mvn clean package -DskipTests -Dquarkus.profile=test docker buildx build . --file Dockerfile-tst --tag veenm/paypoint-backend-jvm:$VERSION --platform linux/amd64 # Stap 6: Docker-image pushen naar Docker Hub (huidige versie tag) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index ace7e45..b4b8f2f 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -13,8 +13,8 @@ quarkus.http.cors.origins=${CORS_ORIGINS} quarkus.http.cors.methods=GET,POST,OPTIONS,DELETE,PUT quarkus.http.root-path=/api -quarkus.smallrye-openapi.path=/openapi -quarkus.swagger-ui.always-include=true +#quarkus.smallrye-openapi.path=/openapi +#quarkus.swagger-ui.always-include=true # Mailer configuratie quarkus.mailer.from=${MAILER_FROM} @@ -40,14 +40,7 @@ smallrye.jwt.sign.key.algorithm=RS256 # Token Levensduur (optioneel) smallrye.jwt.new-token.lifespan=3600 -#quarkus.log.category."io.quarkus.security".level=DEBUG -#mp.jwt.verify.claims.groups=groups -#quarkus.log.category."io.smallrye.jwt".level=DEBUG -##quarkus.log.level=DEBUG -##quarkus.log.category."io.quarkus".level=DEBUG -#quarkus.log.category."io.quarkus.rest".level=DEBUG - - +#Swagger UI %test.quarkus.smallrye-openapi.path=/openapi %test.quarkus.swagger-ui.always-include=true