From 7786794be067786e8a0e547b2d7c108da222bf67 Mon Sep 17 00:00:00 2001 From: Fiete Ostkamp Date: Tue, 8 Apr 2025 14:11:39 +0200 Subject: [PATCH] Fix sdc-workflow-designer-be startup issue after adding tracing - make sure that the janino commons-compiler transitive dep has the same version as the janino dependency - change janino dependency scope to compile since the runtime scope breaks app startup Issue-ID: SDC-4728 Change-Id: Ibb429cd6c4831ecaf07c05c12c970e9c88910145 Signed-off-by: Fiete Ostkamp --- pom.xml | 2 +- sdc-workflow-designer-be/pom.xml | 11 ++++++++--- version.properties | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 1eaa9c9a..7fb21b17 100644 --- a/pom.xml +++ b/pom.xml @@ -29,7 +29,7 @@ org.onap.sdc.sdc-workflow-designer sdc-workflow-designer-parent sdc-sdc-workflow-designer - 1.13.1-SNAPSHOT + 1.13.2-SNAPSHOT pom diff --git a/sdc-workflow-designer-be/pom.xml b/sdc-workflow-designer-be/pom.xml index 20c821b9..1fc08c77 100644 --- a/sdc-workflow-designer-be/pom.xml +++ b/sdc-workflow-designer-be/pom.xml @@ -10,7 +10,7 @@ org.onap.sdc.sdc-workflow-designer sdc-workflow-designer-parent - 1.13.1-SNAPSHOT + 1.13.2-SNAPSHOT @@ -28,6 +28,7 @@ 1.7.1 5.9.1 1.9.0 + 3.1.10 @@ -52,6 +53,11 @@ pom import + + org.codehaus.janino + commons-compiler + ${janino.version} + @@ -59,8 +65,7 @@ org.codehaus.janino janino - 3.1.10 - runtime + ${janino.version} org.glassfish diff --git a/version.properties b/version.properties index da75b021..f3560222 100644 --- a/version.properties +++ b/version.properties @@ -4,7 +4,7 @@ major=1 minor=13 -patch=1 +patch=2 base_version=${major}.${minor}.${patch} -- 2.16.6