Fix sdc-workflow-designer-be startup issue after adding tracing 62/140662/1
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Tue, 8 Apr 2025 12:11:39 +0000 (14:11 +0200)
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Tue, 8 Apr 2025 12:11:39 +0000 (14:11 +0200)
- 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 <Fiete.Ostkamp@telekom.de>
pom.xml
sdc-workflow-designer-be/pom.xml
version.properties

diff --git a/pom.xml b/pom.xml
index 1eaa9c9..7fb21b1 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,7 @@
     <groupId>org.onap.sdc.sdc-workflow-designer</groupId>
     <artifactId>sdc-workflow-designer-parent</artifactId>
     <name>sdc-sdc-workflow-designer</name>
-    <version>1.13.1-SNAPSHOT</version>
+    <version>1.13.2-SNAPSHOT</version>
     <packaging>pom</packaging>
 
     <properties>
index 20c821b..1fc08c7 100644 (file)
@@ -10,7 +10,7 @@
     <parent>
         <groupId>org.onap.sdc.sdc-workflow-designer</groupId>
         <artifactId>sdc-workflow-designer-parent</artifactId>
-        <version>1.13.1-SNAPSHOT</version>
+        <version>1.13.2-SNAPSHOT</version>
     </parent>
 
     <properties>
@@ -28,6 +28,7 @@
         <sdc-be-common.version>1.7.1</sdc-be-common.version>
         <junitJupiter.version>5.9.1</junitJupiter.version>
         <junit.platform.version>1.9.0</junit.platform.version>
+        <janino.version>3.1.10</janino.version>
     </properties>
 
     <dependencyManagement>
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
+            <dependency>
+                <groupId>org.codehaus.janino</groupId>
+                <artifactId>commons-compiler</artifactId>
+                <version>${janino.version}</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
@@ -59,8 +65,7 @@
         <dependency>
             <groupId>org.codehaus.janino</groupId>
             <artifactId>janino</artifactId>
-            <version>3.1.10</version>
-            <scope>runtime</scope>
+            <version>${janino.version}</version>
         </dependency>
         <dependency>
             <groupId>org.glassfish</groupId>
index da75b02..f356022 100644 (file)
@@ -4,7 +4,7 @@
 
 major=1
 minor=13
-patch=1
+patch=2
 
 base_version=${major}.${minor}.${patch}