Update to 1.15.6-SNAPSHOT so parent 86/142786/1
authorFiete Ostkamp <fiete.ostkamp@telekom.de>
Sat, 20 Dec 2025 11:09:26 +0000 (12:09 +0100)
committerFiete Ostkamp <fiete.ostkamp@telekom.de>
Sat, 20 Dec 2025 11:11:11 +0000 (12:11 +0100)
- update so parent (1.15.0-SNAPSHOT -> 1.15.6-SNAPSHOT)
- update snapshot version to 1.13.3-SNAPSHOT

Issue-ID: SO-4234
Change-Id: I420d59aafe7983e4cba544fd1d051dd60e6946ef
Signed-off-by: Fiete Ostkamp <fiete.ostkamp@telekom.de>
13 files changed:
packages/docker/pom.xml
packages/pom.xml
pom.xml
so-cnf-adapter-application/pom.xml
so-cnf-adapter-application/src/test/java/org/onap/so/adapters/cnf/rest/TracingTest.java
so-cnfm/pom.xml
so-cnfm/so-cnfm-lcm/pom.xml
so-cnfm/so-cnfm-lcm/so-cnfm-lcm-api/pom.xml
so-cnfm/so-cnfm-lcm/so-cnfm-lcm-application/pom.xml
so-cnfm/so-cnfm-lcm/so-cnfm-lcm-bpmn-flows/pom.xml
so-cnfm/so-cnfm-lcm/so-cnfm-lcm-database-service/pom.xml
so-cnfm/so-cnfm-lcm/so-cnfm-lcm-service/pom.xml
version.properties

index 7e2b36d..30b2a59 100755 (executable)
@@ -4,10 +4,10 @@
     <parent>
         <groupId>org.onap.so.adapters.so-cnf-adapter</groupId>
         <artifactId>packages</artifactId>
-        <version>1.13.2-SNAPSHOT</version>
+        <version>1.13.3-SNAPSHOT</version>
     </parent>
     <groupId>org.onap.so.adapters.so-cnf-adapter.packages</groupId>
-    <version>1.13.2-SNAPSHOT</version>
+    <version>1.13.3-SNAPSHOT</version>
     <packaging>pom</packaging>
     <artifactId>docker</artifactId>
     <name>Docker Packaging</name>
index 15cf10e..1984c9e 100644 (file)
@@ -4,11 +4,11 @@
     <parent>
         <groupId>org.onap.so.adapters.so-cnf-adapter</groupId>
         <artifactId>so-cnf-adapter</artifactId>
-        <version>1.13.2-SNAPSHOT</version>
+        <version>1.13.3-SNAPSHOT</version>
     </parent>
     <artifactId>packages</artifactId>
     <packaging>pom</packaging>
-    <version>1.13.2-SNAPSHOT</version>
+    <version>1.13.3-SNAPSHOT</version>
     <name>Packages</name>
 
     <profiles>
diff --git a/pom.xml b/pom.xml
index bcd54fe..c34dac5 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -4,11 +4,11 @@
     <parent>
         <groupId>org.onap.so</groupId>
         <artifactId>so</artifactId>
-        <version>1.15.0-SNAPSHOT</version>
+        <version>1.15.6-SNAPSHOT</version>
     </parent>
     <groupId>org.onap.so.adapters.so-cnf-adapter</groupId>
     <artifactId>so-cnf-adapter</artifactId>
-    <version>1.13.2-SNAPSHOT</version>
+    <version>1.13.3-SNAPSHOT</version>
     <name>SO CNF Adapter</name>
     <packaging>pom</packaging>
 
 
     <!-- H2 2.X has breaking changes incompatible with existing Flyway migrations.
      Keep H2 at 1.4.200 with Flyway 6.4.4 (compatible with Spring Boot 2.3.7).
-     Spring Cloud version aligned with Spring Boot 2.3.7. -->
+     Spring Cloud version aligned with Spring Boot 2.4.13. -->
     <dependencyManagement>
         <dependencies>
             <dependency>
             <dependency>
                 <groupId>org.springframework.cloud</groupId>
                 <artifactId>spring-cloud-dependencies</artifactId>
-                <version>Hoxton.SR12</version>
+                <version>2020.0.6</version>
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
index 6a9ce15..228b401 100755 (executable)
     <parent>
         <groupId>org.onap.so.adapters.so-cnf-adapter</groupId>
         <artifactId>so-cnf-adapter</artifactId>
-        <version>1.13.2-SNAPSHOT</version>
+        <version>1.13.3-SNAPSHOT</version>
     </parent>
   <artifactId>so-cnf-adapter-application</artifactId>
-  <version>1.13.2-SNAPSHOT</version>
+  <version>1.13.3-SNAPSHOT</version>
   <name>SO CNF Application Jar</name>
   <build>
     <finalName>${project.artifactId}-${project.version}</finalName>
       <dependency>
         <groupId>org.springframework.cloud</groupId>
         <artifactId>spring-cloud-dependencies</artifactId>
-        <version>Hoxton.SR12</version>
+        <version>2020.0.6</version>
         <type>pom</type>
         <scope>import</scope>
       </dependency>
index fbdfe5d..6c2d8e5 100644 (file)
@@ -20,12 +20,9 @@ import org.junit.Ignore;
 import org.junit.Rule;
 import org.junit.Test;
 import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
-import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
 import org.springframework.boot.test.context.SpringBootTest;
 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
 import org.springframework.boot.web.server.LocalServerPort;
-import org.springframework.cloud.sleuth.autoconfig.TraceAutoConfiguration;
-import org.springframework.cloud.sleuth.zipkin2.ZipkinAutoConfiguration;
 import org.springframework.http.HttpStatus;
 import org.springframework.test.context.DynamicPropertyRegistry;
 import org.springframework.test.context.DynamicPropertySource;
@@ -43,7 +40,6 @@ import lombok.SneakyThrows;
 
 @Ignore
 @EnableAutoConfiguration
-@ImportAutoConfiguration(classes = { TraceAutoConfiguration.class, ZipkinAutoConfiguration.class })
 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT, properties = {
     "spring.sleuth.enabled=true",
     "spring.sleuth.sampler.probability=1.0"
index 89d2707..83ad43e 100644 (file)
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.onap.so.adapters.so-cnf-adapter</groupId>
         <artifactId>so-cnf-adapter</artifactId>
-        <version>1.13.2-SNAPSHOT</version>
+        <version>1.13.3-SNAPSHOT</version>
     </parent>
     <artifactId>so-cnfm</artifactId>
     <packaging>pom</packaging>
index 4fb5cd6..3675c90 100644 (file)
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.onap.so.adapters.so-cnf-adapter</groupId>
         <artifactId>so-cnfm</artifactId>
-        <version>1.13.2-SNAPSHOT</version>
+        <version>1.13.3-SNAPSHOT</version>
     </parent>
 
     <groupId>org.onap.so.adapters.so-cnf-adapter.so-cnfm.lcm</groupId>
index 4f6188f..24f3b18 100644 (file)
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.onap.so.adapters.so-cnf-adapter.so-cnfm.lcm</groupId>
         <artifactId>so-cnfm-lcm</artifactId>
-        <version>1.13.2-SNAPSHOT</version>
+        <version>1.13.3-SNAPSHOT</version>
     </parent>
 
     <artifactId>so-cnfm-lcm-api</artifactId>
index 93d7988..3f311d8 100644 (file)
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.onap.so.adapters.so-cnf-adapter.so-cnfm.lcm</groupId>
         <artifactId>so-cnfm-lcm</artifactId>
-        <version>1.13.2-SNAPSHOT</version>
+        <version>1.13.3-SNAPSHOT</version>
     </parent>
 
     <artifactId>so-cnfm-lcm-application</artifactId>
index 9dfbddd..d6b52a0 100644 (file)
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.onap.so.adapters.so-cnf-adapter.so-cnfm.lcm</groupId>
         <artifactId>so-cnfm-lcm</artifactId>
-        <version>1.13.2-SNAPSHOT</version>
+        <version>1.13.3-SNAPSHOT</version>
     </parent>
 
     <artifactId>so-cnfm-lcm-bpmn-flows</artifactId>
index c23d6fe..4545268 100644 (file)
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.onap.so.adapters.so-cnf-adapter.so-cnfm.lcm</groupId>
         <artifactId>so-cnfm-lcm</artifactId>
-        <version>1.13.2-SNAPSHOT</version>
+        <version>1.13.3-SNAPSHOT</version>
     </parent>
 
     <artifactId>so-cnfm-lcm-database-service</artifactId>
index 57a8a5f..45c7788 100644 (file)
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.onap.so.adapters.so-cnf-adapter.so-cnfm.lcm</groupId>
         <artifactId>so-cnfm-lcm</artifactId>
-        <version>1.13.2-SNAPSHOT</version>
+        <version>1.13.3-SNAPSHOT</version>
     </parent>
 
     <artifactId>so-cnfm-lcm-service</artifactId>
index 50335b6..d5313ef 100644 (file)
@@ -4,7 +4,7 @@
 
 major=1
 minor=13
-patch=2
+patch=3
 
 base_version=${major}.${minor}.${patch}