From: Fiete Ostkamp Date: Wed, 10 Jan 2024 15:27:15 +0000 (+0100) Subject: Update spring boot to 2.3 X-Git-Tag: 1.13.1~3 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F59%2F136959%2F1;p=aai%2Faai-common.git Update spring boot to 2.3 - update to 2.3 - bump version of all submodules to 1.13.1-SNAPSHOT Issue-ID: AAI-3724 Change-Id: Id089e27b236476907c4e7ca7e51d72b74d387d1c Signed-off-by: Fiete Ostkamp --- diff --git a/aai-aaf-auth/pom.xml b/aai-aaf-auth/pom.xml index 1546f00f..ef7d9568 100644 --- a/aai-aaf-auth/pom.xml +++ b/aai-aaf-auth/pom.xml @@ -6,7 +6,7 @@ org.onap.aai.aai-common aai-parent - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT ../aai-parent/pom.xml aai-aaf-auth diff --git a/aai-annotations/pom.xml b/aai-annotations/pom.xml index 4e7fa3fa..17aa855d 100644 --- a/aai-annotations/pom.xml +++ b/aai-annotations/pom.xml @@ -27,7 +27,7 @@ org.onap.aai.aai-common aai-parent - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT ../aai-parent/pom.xml aai-annotations diff --git a/aai-auth/pom.xml b/aai-auth/pom.xml index 4945f168..d993e0d2 100644 --- a/aai-auth/pom.xml +++ b/aai-auth/pom.xml @@ -27,7 +27,7 @@ org.onap.aai.aai-common aai-parent - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT ../aai-parent/pom.xml aai-auth diff --git a/aai-common-docker/aai-common-images/pom.xml b/aai-common-docker/aai-common-images/pom.xml index e689c8dd..2cf50331 100644 --- a/aai-common-docker/aai-common-images/pom.xml +++ b/aai-common-docker/aai-common-images/pom.xml @@ -25,11 +25,11 @@ org.onap.aai.aai-common aai-common-docker - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT aai-common-images - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT pom aai-aai-common-images Contains dockerfiles for aai-common images (alpine and ubuntu based). diff --git a/aai-common-docker/aai-haproxy-image/pom.xml b/aai-common-docker/aai-haproxy-image/pom.xml index b29e2f6b..125351b6 100644 --- a/aai-common-docker/aai-haproxy-image/pom.xml +++ b/aai-common-docker/aai-haproxy-image/pom.xml @@ -25,11 +25,11 @@ org.onap.aai.aai-common aai-common-docker - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT aai-haproxy-image - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT pom aai-aai-haproxy-image Contains dockerfiles for aai-haproxy image. diff --git a/aai-common-docker/pom.xml b/aai-common-docker/pom.xml index c6430719..b5695b2e 100644 --- a/aai-common-docker/pom.xml +++ b/aai-common-docker/pom.xml @@ -26,7 +26,7 @@ org.onap.aai.aai-common aai-parent - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT ../aai-parent/pom.xml diff --git a/aai-core/pom.xml b/aai-core/pom.xml index 79f8aade..4281629e 100644 --- a/aai-core/pom.xml +++ b/aai-core/pom.xml @@ -26,7 +26,7 @@ limitations under the License. org.onap.aai.aai-common aai-parent - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT ../aai-parent/pom.xml aai-core diff --git a/aai-core/src/test/java/org/onap/aai/prevalidation/ValidationServiceTest.java b/aai-core/src/test/java/org/onap/aai/prevalidation/ValidationServiceTest.java index 7f6e5610..8ef1d706 100644 --- a/aai-core/src/test/java/org/onap/aai/prevalidation/ValidationServiceTest.java +++ b/aai-core/src/test/java/org/onap/aai/prevalidation/ValidationServiceTest.java @@ -42,7 +42,7 @@ import org.mockito.Mockito; import org.onap.aai.PayloadUtil; import org.onap.aai.exceptions.AAIException; import org.onap.aai.restclient.RestClient; -import org.springframework.boot.test.rule.OutputCapture; +import org.springframework.boot.test.system.OutputCaptureRule; import org.springframework.http.HttpMethod; import org.springframework.http.ResponseEntity; @@ -53,7 +53,7 @@ public class ValidationServiceTest { private ValidationService validationService; @Rule - public OutputCapture capture = new OutputCapture(); + public OutputCaptureRule capture = new OutputCaptureRule(); private Gson gson; diff --git a/aai-core/src/test/java/org/onap/aai/serialization/db/ImpliedDeleteUnitTest.java b/aai-core/src/test/java/org/onap/aai/serialization/db/ImpliedDeleteUnitTest.java index 27f52d1b..d1aee226 100644 --- a/aai-core/src/test/java/org/onap/aai/serialization/db/ImpliedDeleteUnitTest.java +++ b/aai-core/src/test/java/org/onap/aai/serialization/db/ImpliedDeleteUnitTest.java @@ -36,7 +36,7 @@ import org.onap.aai.introspection.Introspector; import org.onap.aai.serialization.engines.TransactionalGraphEngine; import org.onap.aai.serialization.engines.query.QueryEngine; import org.onap.aai.util.AAIConstants; -import org.springframework.boot.test.rule.OutputCapture; +import org.springframework.boot.test.system.OutputCaptureRule; public class ImpliedDeleteUnitTest { @@ -46,7 +46,7 @@ public class ImpliedDeleteUnitTest { private ImpliedDelete impliedDelete; @Rule - public final OutputCapture outputCapture = new OutputCapture(); + public final OutputCaptureRule outputCapture = new OutputCaptureRule(); @Before public void setup() { diff --git a/aai-els-onap-logging/pom.xml b/aai-els-onap-logging/pom.xml index 9ae986ff..0fb44189 100644 --- a/aai-els-onap-logging/pom.xml +++ b/aai-els-onap-logging/pom.xml @@ -4,7 +4,7 @@ org.onap.aai.aai-common aai-parent - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT ../aai-parent/pom.xml aai-els-onap-logging @@ -96,7 +96,7 @@ org.mockito mockito-core - 3.3.0 + 3.12.4 test diff --git a/aai-failover/pom.xml b/aai-failover/pom.xml index cee068bb..934b5f57 100644 --- a/aai-failover/pom.xml +++ b/aai-failover/pom.xml @@ -5,7 +5,7 @@ org.onap.aai.aai-common aai-parent - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT ../aai-parent/pom.xml 4.0.0 diff --git a/aai-parent/pom.xml b/aai-parent/pom.xml index 4c047895..b713f63b 100644 --- a/aai-parent/pom.xml +++ b/aai-parent/pom.xml @@ -27,7 +27,7 @@ limitations under the License. org.onap.aai.aai-common aai-common - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT aai-parent aai-parent @@ -92,7 +92,7 @@ limitations under the License. Please don't upgrade to 2.3.0 or above for nexus iq or security scans as it could potentially break our code --> - 2.2.13.RELEASE + 2.3.12.RELEASE 5.2.12.RELEASE 5.2.25.RELEASE ${spring.version} @@ -880,6 +880,11 @@ limitations under the License. sonar-maven-plugin ${sonar.scanner.version} + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.0.0 + diff --git a/aai-rest/pom.xml b/aai-rest/pom.xml index 72e9b614..848f19e9 100644 --- a/aai-rest/pom.xml +++ b/aai-rest/pom.xml @@ -29,7 +29,7 @@ org.onap.aai.aai-common aai-parent - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT ../aai-parent/pom.xml aai-rest diff --git a/aai-schema-abstraction/pom.xml b/aai-schema-abstraction/pom.xml index 44744754..324d033c 100644 --- a/aai-schema-abstraction/pom.xml +++ b/aai-schema-abstraction/pom.xml @@ -28,7 +28,7 @@ org.onap.aai.aai-common aai-parent - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT ../aai-parent/pom.xml diff --git a/aai-schema-ingest/pom.xml b/aai-schema-ingest/pom.xml index 58b73c2e..ad2f9fcc 100644 --- a/aai-schema-ingest/pom.xml +++ b/aai-schema-ingest/pom.xml @@ -26,7 +26,7 @@ limitations under the License. org.onap.aai.aai-common aai-parent - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT ../aai-parent/pom.xml aai-schema-ingest diff --git a/aai-utils/pom.xml b/aai-utils/pom.xml index 2b605281..677c8061 100644 --- a/aai-utils/pom.xml +++ b/aai-utils/pom.xml @@ -27,7 +27,7 @@ org.onap.aai.aai-common aai-parent - 1.13.0-SNAPSHOT + 1.13.1-SNAPSHOT ../aai-parent/pom.xml aai-utils