From 8bae1855f1ff862f300435fef33936a7a79aac26 Mon Sep 17 00:00:00 2001 From: Markus Petke Date: Fri, 10 Jan 2025 07:48:23 +0100 Subject: [PATCH] fix sdk tag and license years --- .devcontainer/tests/automated_tests/runtime_test.py | 2 +- .licensechecker.yml | 2 +- .ort.yml | 2 +- .pre-commit-config.yaml | 2 +- CMakeLists.txt | 2 +- app/CMakeLists.txt | 2 +- app/Dockerfile | 2 +- app/src/CMakeLists.txt | 2 +- app/src/Launcher.cpp | 2 +- app/src/SampleApp.cpp | 2 +- app/src/SampleApp.h | 2 +- app/tests/CMakeLists.txt | 2 +- app/tests/utests/CMakeLists.txt | 2 +- app/tests/utests/SampleApp_test.cpp | 2 +- conanfile.txt | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.devcontainer/tests/automated_tests/runtime_test.py b/.devcontainer/tests/automated_tests/runtime_test.py index bdd2a8d..0b16bbb 100644 --- a/.devcontainer/tests/automated_tests/runtime_test.py +++ b/.devcontainer/tests/automated_tests/runtime_test.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023-2024 Contributors to the Eclipse Foundation +# Copyright (c) 2023-2025 Contributors to the Eclipse Foundation # # This program and the accompanying materials are made available under the # terms of the Apache License, Version 2.0 which is available at diff --git a/.licensechecker.yml b/.licensechecker.yml index b97ef1d..6ecfb87 100644 --- a/.licensechecker.yml +++ b/.licensechecker.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation +# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation # # This program and the accompanying materials are made available under the # terms of the Apache License, Version 2.0 which is available at diff --git a/.ort.yml b/.ort.yml index c54bc64..798f3e7 100644 --- a/.ort.yml +++ b/.ort.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2023-2024 Contributors to the Eclipse Foundation +# Copyright (c) 2023-2025 Contributors to the Eclipse Foundation # # This program and the accompanying materials are made available under the # terms of the Apache License, Version 2.0 which is available at diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 779ed2c..9d667b8 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,4 +1,4 @@ -# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation +# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation # # This program and the accompanying materials are made available under the # terms of the Apache License, Version 2.0 which is available at diff --git a/CMakeLists.txt b/CMakeLists.txt index 4a37f40..9a54850 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation +# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation # # This program and the accompanying materials are made available under the # terms of the Apache License, Version 2.0 which is available at diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt index 9a26d0d..6d86f89 100644 --- a/app/CMakeLists.txt +++ b/app/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation +# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation # # This program and the accompanying materials are made available under the # terms of the Apache License, Version 2.0 which is available at diff --git a/app/Dockerfile b/app/Dockerfile index fd1aedc..949bd3d 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -1,4 +1,4 @@ -# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation +# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation # # This program and the accompanying materials are made available under the # terms of the Apache License, Version 2.0 which is available at diff --git a/app/src/CMakeLists.txt b/app/src/CMakeLists.txt index b66c498..4283f1d 100644 --- a/app/src/CMakeLists.txt +++ b/app/src/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation +# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation # # This program and the accompanying materials are made available under the # terms of the Apache License, Version 2.0 which is available at diff --git a/app/src/Launcher.cpp b/app/src/Launcher.cpp index 16698d3..0985140 100644 --- a/app/src/Launcher.cpp +++ b/app/src/Launcher.cpp @@ -1,5 +1,5 @@ /** - * Copyright (c) 2022-2024 Contributors to the Eclipse Foundation + * Copyright (c) 2022-2025 Contributors to the Eclipse Foundation * * This program and the accompanying materials are made available under the * terms of the Apache License, Version 2.0 which is available at diff --git a/app/src/SampleApp.cpp b/app/src/SampleApp.cpp index 723af53..83bcaec 100644 --- a/app/src/SampleApp.cpp +++ b/app/src/SampleApp.cpp @@ -1,5 +1,5 @@ /** - * Copyright (c) 2023-2024 Contributors to the Eclipse Foundation + * Copyright (c) 2023-2025 Contributors to the Eclipse Foundation * * This program and the accompanying materials are made available under the * terms of the Apache License, Version 2.0 which is available at diff --git a/app/src/SampleApp.h b/app/src/SampleApp.h index c733e7c..7499f30 100644 --- a/app/src/SampleApp.h +++ b/app/src/SampleApp.h @@ -1,5 +1,5 @@ /** - * Copyright (c) 2023-2024 Contributors to the Eclipse Foundation + * Copyright (c) 2023-2025 Contributors to the Eclipse Foundation * * This program and the accompanying materials are made available under the * terms of the Apache License, Version 2.0 which is available at diff --git a/app/tests/CMakeLists.txt b/app/tests/CMakeLists.txt index 7b60969..181a356 100644 --- a/app/tests/CMakeLists.txt +++ b/app/tests/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation +# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation # # This program and the accompanying materials are made available under the # terms of the Apache License, Version 2.0 which is available at diff --git a/app/tests/utests/CMakeLists.txt b/app/tests/utests/CMakeLists.txt index 18acefa..d1c0041 100644 --- a/app/tests/utests/CMakeLists.txt +++ b/app/tests/utests/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation +# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation # # This program and the accompanying materials are made available under the # terms of the Apache License, Version 2.0 which is available at diff --git a/app/tests/utests/SampleApp_test.cpp b/app/tests/utests/SampleApp_test.cpp index 00f0817..04ae008 100644 --- a/app/tests/utests/SampleApp_test.cpp +++ b/app/tests/utests/SampleApp_test.cpp @@ -1,5 +1,5 @@ /** - * Copyright (c) 2022-2024 Contributors to the Eclipse Foundation + * Copyright (c) 2022-2025 Contributors to the Eclipse Foundation * * This program and the accompanying materials are made available under the * terms of the Apache License, Version 2.0 which is available at diff --git a/conanfile.txt b/conanfile.txt index eebbfa3..7b4bc75 100644 --- a/conanfile.txt +++ b/conanfile.txt @@ -1,6 +1,6 @@ [requires] vehicle-model/generated -vehicle-app-sdk/version-bump +vehicle-app-sdk/0.6.01 [generators] cmake