From bb96eae747384e98566768e0d8f22f259f037a30 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 04:52:31 +0000 Subject: [PATCH 1/2] Bump the quarkus group with 2 updates Bumps the quarkus group with 2 updates: [io.quarkus.platform:quarkus-bom](https://github.com/quarkusio/quarkus-platform) and [io.quarkus.platform:quarkus-maven-plugin](https://github.com/quarkusio/quarkus-platform). Updates `io.quarkus.platform:quarkus-bom` from 3.16.4 to 3.17.2 - [Commits](https://github.com/quarkusio/quarkus-platform/compare/3.16.4...3.17.2) Updates `io.quarkus.platform:quarkus-maven-plugin` from 3.16.4 to 3.17.2 - [Commits](https://github.com/quarkusio/quarkus-platform/compare/3.16.4...3.17.2) Updates `io.quarkus.platform:quarkus-maven-plugin` from 3.16.4 to 3.17.2 - [Commits](https://github.com/quarkusio/quarkus-platform/compare/3.16.4...3.17.2) --- updated-dependencies: - dependency-name: io.quarkus.platform:quarkus-bom dependency-type: direct:production update-type: version-update:semver-minor dependency-group: quarkus - dependency-name: io.quarkus.platform:quarkus-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor dependency-group: quarkus - dependency-name: io.quarkus.platform:quarkus-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor dependency-group: quarkus ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d6c97d1..b68e17a 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ UTF-8 quarkus-bom io.quarkus.platform - 3.16.4 + 3.17.2 1.12.0 3.26.0 true From bf2d7ce922a39cd19006373bd7e66566b374d7cd Mon Sep 17 00:00:00 2001 From: marko-bekhta Date: Mon, 2 Dec 2024 08:59:05 +0100 Subject: [PATCH 2/2] Add a default value for some properties mapped to env variables --- src/main/resources/application.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index bbe0de7..9d1ab89 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -16,7 +16,7 @@ quarkus.management.auth.permission.health.paths=/q/health/* # Basic security for management: quarkus.security.users.embedded.enabled=true quarkus.security.users.embedded.plain-text=true -quarkus.security.users.embedded.users."management-user"=${MANAGEMENT_USER_PASSWORD} +quarkus.security.users.embedded.users."management-user"=${MANAGEMENT_USER_PASSWORD:not-a-password} # # Scheduler: # >> By default, the scheduler is not started unless a @Scheduled business method is found.