diff options
3 files changed, 8 insertions, 7 deletions
diff --git a/cps-dependencies/pom.xml b/cps-dependencies/pom.xml index 237dd7ca95..173686021a 100755 --- a/cps-dependencies/pom.xml +++ b/cps-dependencies/pom.xml @@ -25,11 +25,11 @@ <spock-core.version>2.0-M2-groovy-3.0</spock-core.version> <spock-spring.version>1.3-groovy-2.5</spock-spring.version> <spotbugs.version>4.2.0</spotbugs.version> - <springboot.version>2.3.3.RELEASE</springboot.version> + <springboot.version>2.3.8.RELEASE</springboot.version> <springfox.version>3.0.0</springfox.version> <swagger.version>2.1.4</swagger.version> <testcontainers.version>1.15.1</testcontainers.version> - <yangtools.version>5.0.6</yangtools.version> + <yangtools.version>5.0.7</yangtools.version> </properties> <distributionManagement> diff --git a/cps-service/src/main/java/org/onap/cps/api/impl/YangTextSchemaSourceSetCache.java b/cps-service/src/main/java/org/onap/cps/api/impl/YangTextSchemaSourceSetCache.java index af16727f19..859dab9a9f 100644 --- a/cps-service/src/main/java/org/onap/cps/api/impl/YangTextSchemaSourceSetCache.java +++ b/cps-service/src/main/java/org/onap/cps/api/impl/YangTextSchemaSourceSetCache.java @@ -1,7 +1,6 @@ -package org.onap.cps.api.impl; /* * ============LICENSE_START======================================================= - * Copyright (C) 2020 Pantheon.tech + * Copyright (C) 2021 Pantheon.tech * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,6 +17,8 @@ package org.onap.cps.api.impl; * ============LICENSE_END========================================================= */ +package org.onap.cps.api.impl; + import com.google.errorprone.annotations.CanIgnoreReturnValue; import java.util.Map; import org.onap.cps.spi.CpsModulePersistenceService; diff --git a/cps-service/src/main/java/org/onap/cps/config/CacheConfig.java b/cps-service/src/main/java/org/onap/cps/config/CacheConfig.java index 4441e4f2a1..897c0bf597 100644 --- a/cps-service/src/main/java/org/onap/cps/config/CacheConfig.java +++ b/cps-service/src/main/java/org/onap/cps/config/CacheConfig.java @@ -1,8 +1,6 @@ -package org.onap.cps.config; - /* * ============LICENSE_START======================================================= - * Copyright (C) 2020 Pantheon.tech + * Copyright (C) 2021 Pantheon.tech * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,6 +17,8 @@ package org.onap.cps.config; * ============LICENSE_END========================================================= */ +package org.onap.cps.config; + import org.springframework.cache.annotation.EnableCaching; import org.springframework.context.annotation.Configuration; |