From f5720f356b089df4f5e614f3aa8689d866950e38 Mon Sep 17 00:00:00 2001 From: Tomas Langer Date: Tue, 10 Dec 2024 19:31:58 +0100 Subject: [PATCH] Copyright fixes. --- builder/api/src/main/java/module-info.java | 2 +- .../processor/GenerateAbstractBuilder.java | 2 +- .../java/io/helidon/builder/processor/Types.java | 2 +- .../io/helidon/common/HelidonServiceLoader.java | 2 +- .../java/io/helidon/common/LruCacheTest.java | 2 +- .../common/config/ConfigBuilderSupport.java | 16 ++++++++++++++++ .../io/helidon/common/config/ProvidedUtil.java | 2 +- common/config/src/main/java/module-info.java | 2 +- common/configurable/etc/spotbugs/exclude.xml | 2 +- .../common/mapper/DefaultMapperProvider.java | 2 +- .../io/helidon/common/mapper/GlobalManager.java | 2 +- .../java/io/helidon/common/mapper/Mapper.java | 2 +- .../java/io/helidon/common/mapper/Mappers.java | 16 ++++++++++++++++ .../common/mapper/MappersConfigBlueprint.java | 16 ++++++++++++++++ .../common/mapper/MappersConfigSupport.java | 16 ++++++++++++++++ .../io/helidon/common/mapper/MappersFactory.java | 16 ++++++++++++++++ .../io/helidon/common/mapper/OptionalValue.java | 2 +- .../io/helidon/common/mapper/ValueBacked.java | 2 +- .../io/helidon/common/mapper/ValueEmpty.java | 2 +- common/mapper/src/main/java/module-info.java | 2 +- .../io/helidon/common/mapper/CustomMapper.java | 16 ++++++++++++++++ .../common/mapper/ServiceLoaderMapper.java | 2 +- .../common/mapper/ServiceRegistryMapper.java | 2 +- .../helidon/dbclient/DbMapperProviderImpl.java | 2 +- .../PriorityAndServiceTypeComparatorTest.java | 2 +- .../service/registry/RegistryBuilderSupport.java | 16 ++++++++++++++++ .../service/registry/RegistryMetricsImpl.java | 16 ++++++++++++++++ .../io/helidon/service/registry/Services.java | 16 ++++++++++++++++ .../service/tests/inject/LateBindingTypes.java | 16 ++++++++++++++++ .../service/tests/inject/LateBindingTest.java | 16 ++++++++++++++++ 30 files changed, 195 insertions(+), 19 deletions(-) diff --git a/builder/api/src/main/java/module-info.java b/builder/api/src/main/java/module-info.java index 037d6910d08..f65d56e0b9b 100644 --- a/builder/api/src/main/java/module-info.java +++ b/builder/api/src/main/java/module-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022, 2023 Oracle and/or its affiliates. + * Copyright (c) 2022, 2024 Oracle and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/builder/processor/src/main/java/io/helidon/builder/processor/GenerateAbstractBuilder.java b/builder/processor/src/main/java/io/helidon/builder/processor/GenerateAbstractBuilder.java index 3385d2930d0..00d199c98d1 100644 --- a/builder/processor/src/main/java/io/helidon/builder/processor/GenerateAbstractBuilder.java +++ b/builder/processor/src/main/java/io/helidon/builder/processor/GenerateAbstractBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Oracle and/or its affiliates. + * Copyright (c) 2023, 2024 Oracle and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/builder/processor/src/main/java/io/helidon/builder/processor/Types.java b/builder/processor/src/main/java/io/helidon/builder/processor/Types.java index 23c62863cf1..9b66485ae1e 100644 --- a/builder/processor/src/main/java/io/helidon/builder/processor/Types.java +++ b/builder/processor/src/main/java/io/helidon/builder/processor/Types.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Oracle and/or its affiliates. + * Copyright (c) 2023, 2024 Oracle and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/common/common/src/main/java/io/helidon/common/HelidonServiceLoader.java b/common/common/src/main/java/io/helidon/common/HelidonServiceLoader.java index 5bc557b3dfd..3bafbc9aa44 100644 --- a/common/common/src/main/java/io/helidon/common/HelidonServiceLoader.java +++ b/common/common/src/main/java/io/helidon/common/HelidonServiceLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019, 2023 Oracle and/or its affiliates. + * Copyright (c) 2019, 2024 Oracle and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/common/common/src/test/java/io/helidon/common/LruCacheTest.java b/common/common/src/test/java/io/helidon/common/LruCacheTest.java index d8fac97efa2..d1b56c96c00 100644 --- a/common/common/src/test/java/io/helidon/common/LruCacheTest.java +++ b/common/common/src/test/java/io/helidon/common/LruCacheTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019, 2023 Oracle and/or its affiliates. + * Copyright (c) 2019, 2024 Oracle and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/common/config/src/main/java/io/helidon/common/config/ConfigBuilderSupport.java b/common/config/src/main/java/io/helidon/common/config/ConfigBuilderSupport.java index 060cbc8b9db..5158e8695f6 100644 --- a/common/config/src/main/java/io/helidon/common/config/ConfigBuilderSupport.java +++ b/common/config/src/main/java/io/helidon/common/config/ConfigBuilderSupport.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2024 Oracle and/or its affiliates. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package io.helidon.common.config; import java.util.List; diff --git a/common/config/src/main/java/io/helidon/common/config/ProvidedUtil.java b/common/config/src/main/java/io/helidon/common/config/ProvidedUtil.java index 2e0506a5b58..ad2f31b51d3 100644 --- a/common/config/src/main/java/io/helidon/common/config/ProvidedUtil.java +++ b/common/config/src/main/java/io/helidon/common/config/ProvidedUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Oracle and/or its affiliates. + * Copyright (c) 2023, 2024 Oracle and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/common/config/src/main/java/module-info.java b/common/config/src/main/java/module-info.java index cac01107aeb..d5cb643f9e8 100644 --- a/common/config/src/main/java/module-info.java +++ b/common/config/src/main/java/module-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022, 2023 Oracle and/or its affiliates. + * Copyright (c) 2022, 2024 Oracle and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/common/configurable/etc/spotbugs/exclude.xml b/common/configurable/etc/spotbugs/exclude.xml index 93b6a8fe2d3..0bf0414c552 100644 --- a/common/configurable/etc/spotbugs/exclude.xml +++ b/common/configurable/etc/spotbugs/exclude.xml @@ -1,7 +1,7 @@