From 9773275d39b56decf2958a08909e6d0c4b0ddcab Mon Sep 17 00:00:00 2001 From: svariant Date: Thu, 14 Nov 2024 17:22:36 +0100 Subject: [PATCH 1/2] fix: Updated logback dependencies --- pom.xml | 26 ++++++++++++------- .../application.properties | 0 2 files changed, 16 insertions(+), 10 deletions(-) rename src/main/{resources-filtered => resources}/application.properties (100%) diff --git a/pom.xml b/pom.xml index c9e5698..07c3892 100644 --- a/pom.xml +++ b/pom.xml @@ -156,6 +156,22 @@ 2.0.9 + + ch.qos.logback + logback-core + 1.5.12 + + + ch.qos.logback + logback-classic + 1.5.12 + + + co.elastic.logging + logback-ecs-encoder + 1.5.0 + + io.github.resilience4j resilience4j-retry @@ -294,15 +310,5 @@ 2.9.0 - - - - src/main/resources-filtered - true - - - src/main/resources - - diff --git a/src/main/resources-filtered/application.properties b/src/main/resources/application.properties similarity index 100% rename from src/main/resources-filtered/application.properties rename to src/main/resources/application.properties From d3b1e601d6c7a218ac55d1b8ff3e8232400216ac Mon Sep 17 00:00:00 2001 From: svariant Date: Thu, 14 Nov 2024 17:28:48 +0100 Subject: [PATCH 2/2] fix: Rollback resource-filtered --- pom.xml | 10 ++++++++++ .../application.properties | 0 2 files changed, 10 insertions(+) rename src/main/{resources => resources-filtered}/application.properties (100%) diff --git a/pom.xml b/pom.xml index 07c3892..c19e083 100644 --- a/pom.xml +++ b/pom.xml @@ -310,5 +310,15 @@ 2.9.0 + + + + src/main/resources-filtered + true + + + src/main/resources + + diff --git a/src/main/resources/application.properties b/src/main/resources-filtered/application.properties similarity index 100% rename from src/main/resources/application.properties rename to src/main/resources-filtered/application.properties