From e8c76b0a5de358e3512121f40a8081066b598737 Mon Sep 17 00:00:00 2001 From: Chao Wang Date: Tue, 11 Nov 2025 11:49:24 +0800 Subject: [PATCH] chore: update license header --- license-header | 5 +++-- pom.xml | 7 ++++--- src/main/java/com/redhat/exhort/Api.java | 5 +++-- src/main/java/com/redhat/exhort/Provider.java | 5 +++-- src/main/java/com/redhat/exhort/cli/App.java | 5 +++-- src/main/java/com/redhat/exhort/cli/AppUtils.java | 5 +++-- src/main/java/com/redhat/exhort/cli/CliArgs.java | 5 +++-- src/main/java/com/redhat/exhort/cli/Command.java | 5 +++-- src/main/java/com/redhat/exhort/cli/OutputFormat.java | 5 +++-- .../exhort/exception/PackageNotInstalledException.java | 5 +++-- src/main/java/com/redhat/exhort/image/Image.java | 5 +++-- src/main/java/com/redhat/exhort/image/ImageRef.java | 5 +++-- src/main/java/com/redhat/exhort/image/ImageUtils.java | 5 +++-- src/main/java/com/redhat/exhort/image/Platform.java | 5 +++-- src/main/java/com/redhat/exhort/impl/ExhortApi.java | 5 +++-- src/main/java/com/redhat/exhort/impl/RequestManager.java | 5 +++-- .../exhort/logging/ClientTraceIdSimpleFormatter.java | 5 +++-- .../java/com/redhat/exhort/logging/LoggersFactory.java | 5 +++-- .../java/com/redhat/exhort/providers/AnalysisType.java | 5 +++-- .../java/com/redhat/exhort/providers/BaseJavaProvider.java | 5 +++-- .../com/redhat/exhort/providers/GoModulesProvider.java | 5 +++-- .../java/com/redhat/exhort/providers/GradleProvider.java | 5 +++-- .../com/redhat/exhort/providers/JavaMavenProvider.java | 5 +++-- .../com/redhat/exhort/providers/JavaScriptNpmProvider.java | 5 +++-- .../redhat/exhort/providers/JavaScriptPnpmProvider.java | 5 +++-- .../com/redhat/exhort/providers/JavaScriptProvider.java | 5 +++-- .../redhat/exhort/providers/JavaScriptProviderFactory.java | 5 +++-- .../redhat/exhort/providers/JavaScriptYarnProvider.java | 5 +++-- .../com/redhat/exhort/providers/PythonPipProvider.java | 5 +++-- .../com/redhat/exhort/providers/YarnBerryProcessor.java | 5 +++-- .../com/redhat/exhort/providers/YarnClassicProcessor.java | 5 +++-- .../java/com/redhat/exhort/providers/YarnProcessor.java | 5 +++-- .../redhat/exhort/providers/javascript/model/Manifest.java | 5 +++-- src/main/java/com/redhat/exhort/sbom/CycloneDXSbom.java | 5 +++-- src/main/java/com/redhat/exhort/sbom/Sbom.java | 5 +++-- src/main/java/com/redhat/exhort/sbom/SbomFactory.java | 5 +++-- src/main/java/com/redhat/exhort/tools/Ecosystem.java | 5 +++-- src/main/java/com/redhat/exhort/tools/Operations.java | 5 +++-- src/main/java/com/redhat/exhort/utils/Environment.java | 5 +++-- .../java/com/redhat/exhort/utils/PythonControllerBase.java | 5 +++-- .../com/redhat/exhort/utils/PythonControllerRealEnv.java | 5 +++-- .../com/redhat/exhort/utils/PythonControllerTestEnv.java | 5 +++-- .../redhat/exhort/utils/PythonControllerVirtualEnv.java | 5 +++-- .../java/com/redhat/exhort/utils/PythonDependency.java | 5 +++-- .../java/com/redhat/exhort/utils/StringInsensitive.java | 5 +++-- .../com/redhat/exhort/vcs/GitVersionControlSystemImpl.java | 5 +++-- src/main/java/com/redhat/exhort/vcs/TagInfo.java | 5 +++-- .../java/com/redhat/exhort/vcs/VersionControlSystem.java | 5 +++-- src/test/java/com/redhat/exhort/ExhortTest.java | 5 +++-- src/test/java/com/redhat/exhort/cli/AppTest.java | 5 +++-- src/test/java/com/redhat/exhort/image/ImageRefTest.java | 5 +++-- src/test/java/com/redhat/exhort/image/ImageTest.java | 5 +++-- src/test/java/com/redhat/exhort/image/ImageUtilsTest.java | 5 +++-- src/test/java/com/redhat/exhort/image/PlatformTest.java | 5 +++-- src/test/java/com/redhat/exhort/impl/ExhortApiIT.java | 5 +++-- src/test/java/com/redhat/exhort/impl/Exhort_Api_Test.java | 5 +++-- .../exhort/providers/GoModulesMainModuleVersionTest.java | 5 +++-- .../exhort/providers/Golang_Modules_Provider_Test.java | 5 +++-- .../exhort/providers/Gradle_Groovy_Provider_Test.java | 5 +++-- .../exhort/providers/Gradle_Kotlin_Provider_Test.java | 5 +++-- .../com/redhat/exhort/providers/Gradle_Provider_Test.java | 5 +++-- .../java/com/redhat/exhort/providers/HelperExtension.java | 5 +++-- .../java/com/redhat/exhort/providers/Java_Envs_Test.java | 5 +++-- .../redhat/exhort/providers/Java_Maven_Provider_Test.java | 5 +++-- .../com/redhat/exhort/providers/Javascript_Envs_Test.java | 5 +++-- .../redhat/exhort/providers/Javascript_Provider_Test.java | 5 +++-- .../exhort/providers/PythonEnvironmentExtension.java | 5 +++-- .../com/redhat/exhort/providers/Python_Provider_Test.java | 5 +++-- src/test/java/com/redhat/exhort/tools/Ecosystem_Test.java | 5 +++-- src/test/java/com/redhat/exhort/tools/OperationsTest.java | 5 +++-- src/test/java/com/redhat/exhort/tools/Operations_Test.java | 5 +++-- .../com/redhat/exhort/utils/PythonControllerBaseTest.java | 5 +++-- .../redhat/exhort/utils/PythonControllerRealEnvTest.java | 5 +++-- .../exhort/utils/PythonControllerVirtualEnvTest.java | 5 +++-- 74 files changed, 223 insertions(+), 149 deletions(-) diff --git a/license-header b/license-header index fc6b6a06..c8f44f67 100644 --- a/license-header +++ b/license-header @@ -1,15 +1,16 @@ /* - * Copyright © $YEAR Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/pom.xml b/pom.xml index 6d24f4e1..068d1706 100644 --- a/pom.xml +++ b/pom.xml @@ -336,7 +336,7 @@ ${license-maven-plugin.version} - Red Hat, Inc. + Trustify Dependency Analytics Authors @@ -356,17 +356,18 @@ src/it/**/src/test/** - diff --git a/src/main/java/com/redhat/exhort/Api.java b/src/main/java/com/redhat/exhort/Api.java index feece8d6..57859cc8 100644 --- a/src/main/java/com/redhat/exhort/Api.java +++ b/src/main/java/com/redhat/exhort/Api.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/Provider.java b/src/main/java/com/redhat/exhort/Provider.java index acd1e810..edadd746 100644 --- a/src/main/java/com/redhat/exhort/Provider.java +++ b/src/main/java/com/redhat/exhort/Provider.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/cli/App.java b/src/main/java/com/redhat/exhort/cli/App.java index 30bf39d4..ead1ecea 100644 --- a/src/main/java/com/redhat/exhort/cli/App.java +++ b/src/main/java/com/redhat/exhort/cli/App.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/cli/AppUtils.java b/src/main/java/com/redhat/exhort/cli/AppUtils.java index 4f6973d9..1112c929 100644 --- a/src/main/java/com/redhat/exhort/cli/AppUtils.java +++ b/src/main/java/com/redhat/exhort/cli/AppUtils.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/cli/CliArgs.java b/src/main/java/com/redhat/exhort/cli/CliArgs.java index 6201dc74..2189750d 100644 --- a/src/main/java/com/redhat/exhort/cli/CliArgs.java +++ b/src/main/java/com/redhat/exhort/cli/CliArgs.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/cli/Command.java b/src/main/java/com/redhat/exhort/cli/Command.java index a79a3867..f09ffac1 100644 --- a/src/main/java/com/redhat/exhort/cli/Command.java +++ b/src/main/java/com/redhat/exhort/cli/Command.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/cli/OutputFormat.java b/src/main/java/com/redhat/exhort/cli/OutputFormat.java index ccdd4b9d..1743a7a5 100644 --- a/src/main/java/com/redhat/exhort/cli/OutputFormat.java +++ b/src/main/java/com/redhat/exhort/cli/OutputFormat.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/exception/PackageNotInstalledException.java b/src/main/java/com/redhat/exhort/exception/PackageNotInstalledException.java index 9e9dde79..6d6441ec 100644 --- a/src/main/java/com/redhat/exhort/exception/PackageNotInstalledException.java +++ b/src/main/java/com/redhat/exhort/exception/PackageNotInstalledException.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/image/Image.java b/src/main/java/com/redhat/exhort/image/Image.java index bebe5237..182311de 100644 --- a/src/main/java/com/redhat/exhort/image/Image.java +++ b/src/main/java/com/redhat/exhort/image/Image.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/image/ImageRef.java b/src/main/java/com/redhat/exhort/image/ImageRef.java index 9fa9b72d..90fdb267 100644 --- a/src/main/java/com/redhat/exhort/image/ImageRef.java +++ b/src/main/java/com/redhat/exhort/image/ImageRef.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/image/ImageUtils.java b/src/main/java/com/redhat/exhort/image/ImageUtils.java index df88538e..1d35b68b 100644 --- a/src/main/java/com/redhat/exhort/image/ImageUtils.java +++ b/src/main/java/com/redhat/exhort/image/ImageUtils.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/image/Platform.java b/src/main/java/com/redhat/exhort/image/Platform.java index 70a7deb6..c3201861 100644 --- a/src/main/java/com/redhat/exhort/image/Platform.java +++ b/src/main/java/com/redhat/exhort/image/Platform.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/impl/ExhortApi.java b/src/main/java/com/redhat/exhort/impl/ExhortApi.java index 94b428d6..d481d1f5 100644 --- a/src/main/java/com/redhat/exhort/impl/ExhortApi.java +++ b/src/main/java/com/redhat/exhort/impl/ExhortApi.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/impl/RequestManager.java b/src/main/java/com/redhat/exhort/impl/RequestManager.java index ace83db0..17417e45 100644 --- a/src/main/java/com/redhat/exhort/impl/RequestManager.java +++ b/src/main/java/com/redhat/exhort/impl/RequestManager.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/logging/ClientTraceIdSimpleFormatter.java b/src/main/java/com/redhat/exhort/logging/ClientTraceIdSimpleFormatter.java index 25b6f673..71c6e908 100644 --- a/src/main/java/com/redhat/exhort/logging/ClientTraceIdSimpleFormatter.java +++ b/src/main/java/com/redhat/exhort/logging/ClientTraceIdSimpleFormatter.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/logging/LoggersFactory.java b/src/main/java/com/redhat/exhort/logging/LoggersFactory.java index e57baea3..e1df1759 100644 --- a/src/main/java/com/redhat/exhort/logging/LoggersFactory.java +++ b/src/main/java/com/redhat/exhort/logging/LoggersFactory.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/providers/AnalysisType.java b/src/main/java/com/redhat/exhort/providers/AnalysisType.java index 74bf7f00..f334aac3 100644 --- a/src/main/java/com/redhat/exhort/providers/AnalysisType.java +++ b/src/main/java/com/redhat/exhort/providers/AnalysisType.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/providers/BaseJavaProvider.java b/src/main/java/com/redhat/exhort/providers/BaseJavaProvider.java index 97e52519..769c9d3c 100644 --- a/src/main/java/com/redhat/exhort/providers/BaseJavaProvider.java +++ b/src/main/java/com/redhat/exhort/providers/BaseJavaProvider.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/providers/GoModulesProvider.java b/src/main/java/com/redhat/exhort/providers/GoModulesProvider.java index d7e14918..54016f16 100644 --- a/src/main/java/com/redhat/exhort/providers/GoModulesProvider.java +++ b/src/main/java/com/redhat/exhort/providers/GoModulesProvider.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/providers/GradleProvider.java b/src/main/java/com/redhat/exhort/providers/GradleProvider.java index 4cc3888c..a3fcb4dd 100644 --- a/src/main/java/com/redhat/exhort/providers/GradleProvider.java +++ b/src/main/java/com/redhat/exhort/providers/GradleProvider.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/providers/JavaMavenProvider.java b/src/main/java/com/redhat/exhort/providers/JavaMavenProvider.java index ef79e6ed..201cdb4b 100644 --- a/src/main/java/com/redhat/exhort/providers/JavaMavenProvider.java +++ b/src/main/java/com/redhat/exhort/providers/JavaMavenProvider.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/providers/JavaScriptNpmProvider.java b/src/main/java/com/redhat/exhort/providers/JavaScriptNpmProvider.java index 96dbfd9c..c83de5cd 100644 --- a/src/main/java/com/redhat/exhort/providers/JavaScriptNpmProvider.java +++ b/src/main/java/com/redhat/exhort/providers/JavaScriptNpmProvider.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/providers/JavaScriptPnpmProvider.java b/src/main/java/com/redhat/exhort/providers/JavaScriptPnpmProvider.java index 28d2eca9..e60d95a9 100644 --- a/src/main/java/com/redhat/exhort/providers/JavaScriptPnpmProvider.java +++ b/src/main/java/com/redhat/exhort/providers/JavaScriptPnpmProvider.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/providers/JavaScriptProvider.java b/src/main/java/com/redhat/exhort/providers/JavaScriptProvider.java index 7671457d..0594e024 100644 --- a/src/main/java/com/redhat/exhort/providers/JavaScriptProvider.java +++ b/src/main/java/com/redhat/exhort/providers/JavaScriptProvider.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/providers/JavaScriptProviderFactory.java b/src/main/java/com/redhat/exhort/providers/JavaScriptProviderFactory.java index f3bf4372..d08360ff 100644 --- a/src/main/java/com/redhat/exhort/providers/JavaScriptProviderFactory.java +++ b/src/main/java/com/redhat/exhort/providers/JavaScriptProviderFactory.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/providers/JavaScriptYarnProvider.java b/src/main/java/com/redhat/exhort/providers/JavaScriptYarnProvider.java index 7d5453d7..d71a8d2b 100644 --- a/src/main/java/com/redhat/exhort/providers/JavaScriptYarnProvider.java +++ b/src/main/java/com/redhat/exhort/providers/JavaScriptYarnProvider.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/providers/PythonPipProvider.java b/src/main/java/com/redhat/exhort/providers/PythonPipProvider.java index e1920024..aaccea81 100644 --- a/src/main/java/com/redhat/exhort/providers/PythonPipProvider.java +++ b/src/main/java/com/redhat/exhort/providers/PythonPipProvider.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/providers/YarnBerryProcessor.java b/src/main/java/com/redhat/exhort/providers/YarnBerryProcessor.java index ef5df5d6..46fcfe34 100644 --- a/src/main/java/com/redhat/exhort/providers/YarnBerryProcessor.java +++ b/src/main/java/com/redhat/exhort/providers/YarnBerryProcessor.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/providers/YarnClassicProcessor.java b/src/main/java/com/redhat/exhort/providers/YarnClassicProcessor.java index d0bb7059..7c487c02 100644 --- a/src/main/java/com/redhat/exhort/providers/YarnClassicProcessor.java +++ b/src/main/java/com/redhat/exhort/providers/YarnClassicProcessor.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/providers/YarnProcessor.java b/src/main/java/com/redhat/exhort/providers/YarnProcessor.java index d261ab57..2ed504bc 100644 --- a/src/main/java/com/redhat/exhort/providers/YarnProcessor.java +++ b/src/main/java/com/redhat/exhort/providers/YarnProcessor.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/providers/javascript/model/Manifest.java b/src/main/java/com/redhat/exhort/providers/javascript/model/Manifest.java index a1bcc1b2..6f3a01a5 100644 --- a/src/main/java/com/redhat/exhort/providers/javascript/model/Manifest.java +++ b/src/main/java/com/redhat/exhort/providers/javascript/model/Manifest.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/sbom/CycloneDXSbom.java b/src/main/java/com/redhat/exhort/sbom/CycloneDXSbom.java index 1c929f6f..a537a794 100644 --- a/src/main/java/com/redhat/exhort/sbom/CycloneDXSbom.java +++ b/src/main/java/com/redhat/exhort/sbom/CycloneDXSbom.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/sbom/Sbom.java b/src/main/java/com/redhat/exhort/sbom/Sbom.java index 5dcf9e9e..73d8fefc 100644 --- a/src/main/java/com/redhat/exhort/sbom/Sbom.java +++ b/src/main/java/com/redhat/exhort/sbom/Sbom.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/sbom/SbomFactory.java b/src/main/java/com/redhat/exhort/sbom/SbomFactory.java index 5d45b771..262a0f47 100644 --- a/src/main/java/com/redhat/exhort/sbom/SbomFactory.java +++ b/src/main/java/com/redhat/exhort/sbom/SbomFactory.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/tools/Ecosystem.java b/src/main/java/com/redhat/exhort/tools/Ecosystem.java index 75b95db1..85aad7b5 100644 --- a/src/main/java/com/redhat/exhort/tools/Ecosystem.java +++ b/src/main/java/com/redhat/exhort/tools/Ecosystem.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/tools/Operations.java b/src/main/java/com/redhat/exhort/tools/Operations.java index 276168e3..12f55cfd 100644 --- a/src/main/java/com/redhat/exhort/tools/Operations.java +++ b/src/main/java/com/redhat/exhort/tools/Operations.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/utils/Environment.java b/src/main/java/com/redhat/exhort/utils/Environment.java index 0901d025..076828dd 100644 --- a/src/main/java/com/redhat/exhort/utils/Environment.java +++ b/src/main/java/com/redhat/exhort/utils/Environment.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/utils/PythonControllerBase.java b/src/main/java/com/redhat/exhort/utils/PythonControllerBase.java index 39092859..267e3291 100644 --- a/src/main/java/com/redhat/exhort/utils/PythonControllerBase.java +++ b/src/main/java/com/redhat/exhort/utils/PythonControllerBase.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/utils/PythonControllerRealEnv.java b/src/main/java/com/redhat/exhort/utils/PythonControllerRealEnv.java index 14baec01..7deae16f 100644 --- a/src/main/java/com/redhat/exhort/utils/PythonControllerRealEnv.java +++ b/src/main/java/com/redhat/exhort/utils/PythonControllerRealEnv.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/utils/PythonControllerTestEnv.java b/src/main/java/com/redhat/exhort/utils/PythonControllerTestEnv.java index 59b6086d..7070510e 100644 --- a/src/main/java/com/redhat/exhort/utils/PythonControllerTestEnv.java +++ b/src/main/java/com/redhat/exhort/utils/PythonControllerTestEnv.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/utils/PythonControllerVirtualEnv.java b/src/main/java/com/redhat/exhort/utils/PythonControllerVirtualEnv.java index 7296eb47..ae29988f 100644 --- a/src/main/java/com/redhat/exhort/utils/PythonControllerVirtualEnv.java +++ b/src/main/java/com/redhat/exhort/utils/PythonControllerVirtualEnv.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/utils/PythonDependency.java b/src/main/java/com/redhat/exhort/utils/PythonDependency.java index 469f2f12..7a2bd715 100644 --- a/src/main/java/com/redhat/exhort/utils/PythonDependency.java +++ b/src/main/java/com/redhat/exhort/utils/PythonDependency.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/utils/StringInsensitive.java b/src/main/java/com/redhat/exhort/utils/StringInsensitive.java index 4eb092fb..3675712e 100644 --- a/src/main/java/com/redhat/exhort/utils/StringInsensitive.java +++ b/src/main/java/com/redhat/exhort/utils/StringInsensitive.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/vcs/GitVersionControlSystemImpl.java b/src/main/java/com/redhat/exhort/vcs/GitVersionControlSystemImpl.java index 6bdec25f..35bbdcb2 100644 --- a/src/main/java/com/redhat/exhort/vcs/GitVersionControlSystemImpl.java +++ b/src/main/java/com/redhat/exhort/vcs/GitVersionControlSystemImpl.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/vcs/TagInfo.java b/src/main/java/com/redhat/exhort/vcs/TagInfo.java index 41ace28f..3ab17cd2 100644 --- a/src/main/java/com/redhat/exhort/vcs/TagInfo.java +++ b/src/main/java/com/redhat/exhort/vcs/TagInfo.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/main/java/com/redhat/exhort/vcs/VersionControlSystem.java b/src/main/java/com/redhat/exhort/vcs/VersionControlSystem.java index 1a09850d..757bb97c 100644 --- a/src/main/java/com/redhat/exhort/vcs/VersionControlSystem.java +++ b/src/main/java/com/redhat/exhort/vcs/VersionControlSystem.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/ExhortTest.java b/src/test/java/com/redhat/exhort/ExhortTest.java index 8ba0000b..b21a6957 100644 --- a/src/test/java/com/redhat/exhort/ExhortTest.java +++ b/src/test/java/com/redhat/exhort/ExhortTest.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/cli/AppTest.java b/src/test/java/com/redhat/exhort/cli/AppTest.java index 8e8e0bd3..889b49c4 100644 --- a/src/test/java/com/redhat/exhort/cli/AppTest.java +++ b/src/test/java/com/redhat/exhort/cli/AppTest.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/image/ImageRefTest.java b/src/test/java/com/redhat/exhort/image/ImageRefTest.java index c5f7ddc1..e2af9e2c 100644 --- a/src/test/java/com/redhat/exhort/image/ImageRefTest.java +++ b/src/test/java/com/redhat/exhort/image/ImageRefTest.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/image/ImageTest.java b/src/test/java/com/redhat/exhort/image/ImageTest.java index 3fe51990..b9454ba4 100644 --- a/src/test/java/com/redhat/exhort/image/ImageTest.java +++ b/src/test/java/com/redhat/exhort/image/ImageTest.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/image/ImageUtilsTest.java b/src/test/java/com/redhat/exhort/image/ImageUtilsTest.java index 65d89105..6ad99d76 100644 --- a/src/test/java/com/redhat/exhort/image/ImageUtilsTest.java +++ b/src/test/java/com/redhat/exhort/image/ImageUtilsTest.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/image/PlatformTest.java b/src/test/java/com/redhat/exhort/image/PlatformTest.java index cf35cc5f..2de69807 100644 --- a/src/test/java/com/redhat/exhort/image/PlatformTest.java +++ b/src/test/java/com/redhat/exhort/image/PlatformTest.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/impl/ExhortApiIT.java b/src/test/java/com/redhat/exhort/impl/ExhortApiIT.java index a1526b43..c79be200 100644 --- a/src/test/java/com/redhat/exhort/impl/ExhortApiIT.java +++ b/src/test/java/com/redhat/exhort/impl/ExhortApiIT.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/impl/Exhort_Api_Test.java b/src/test/java/com/redhat/exhort/impl/Exhort_Api_Test.java index b116b97b..ced2a908 100644 --- a/src/test/java/com/redhat/exhort/impl/Exhort_Api_Test.java +++ b/src/test/java/com/redhat/exhort/impl/Exhort_Api_Test.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/providers/GoModulesMainModuleVersionTest.java b/src/test/java/com/redhat/exhort/providers/GoModulesMainModuleVersionTest.java index 8c23f71a..e1f11cec 100644 --- a/src/test/java/com/redhat/exhort/providers/GoModulesMainModuleVersionTest.java +++ b/src/test/java/com/redhat/exhort/providers/GoModulesMainModuleVersionTest.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/providers/Golang_Modules_Provider_Test.java b/src/test/java/com/redhat/exhort/providers/Golang_Modules_Provider_Test.java index 7b21347b..13edfa79 100644 --- a/src/test/java/com/redhat/exhort/providers/Golang_Modules_Provider_Test.java +++ b/src/test/java/com/redhat/exhort/providers/Golang_Modules_Provider_Test.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/providers/Gradle_Groovy_Provider_Test.java b/src/test/java/com/redhat/exhort/providers/Gradle_Groovy_Provider_Test.java index b826d716..3cfe1d63 100644 --- a/src/test/java/com/redhat/exhort/providers/Gradle_Groovy_Provider_Test.java +++ b/src/test/java/com/redhat/exhort/providers/Gradle_Groovy_Provider_Test.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/providers/Gradle_Kotlin_Provider_Test.java b/src/test/java/com/redhat/exhort/providers/Gradle_Kotlin_Provider_Test.java index 96c03619..1980e504 100644 --- a/src/test/java/com/redhat/exhort/providers/Gradle_Kotlin_Provider_Test.java +++ b/src/test/java/com/redhat/exhort/providers/Gradle_Kotlin_Provider_Test.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/providers/Gradle_Provider_Test.java b/src/test/java/com/redhat/exhort/providers/Gradle_Provider_Test.java index 6a1120c2..7d08bcaa 100644 --- a/src/test/java/com/redhat/exhort/providers/Gradle_Provider_Test.java +++ b/src/test/java/com/redhat/exhort/providers/Gradle_Provider_Test.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/providers/HelperExtension.java b/src/test/java/com/redhat/exhort/providers/HelperExtension.java index c26f2416..177e7dab 100644 --- a/src/test/java/com/redhat/exhort/providers/HelperExtension.java +++ b/src/test/java/com/redhat/exhort/providers/HelperExtension.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/providers/Java_Envs_Test.java b/src/test/java/com/redhat/exhort/providers/Java_Envs_Test.java index a89114c6..63b1eaca 100644 --- a/src/test/java/com/redhat/exhort/providers/Java_Envs_Test.java +++ b/src/test/java/com/redhat/exhort/providers/Java_Envs_Test.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/providers/Java_Maven_Provider_Test.java b/src/test/java/com/redhat/exhort/providers/Java_Maven_Provider_Test.java index 16d6207f..9c42d892 100644 --- a/src/test/java/com/redhat/exhort/providers/Java_Maven_Provider_Test.java +++ b/src/test/java/com/redhat/exhort/providers/Java_Maven_Provider_Test.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/providers/Javascript_Envs_Test.java b/src/test/java/com/redhat/exhort/providers/Javascript_Envs_Test.java index d0fb29a6..151fcf28 100644 --- a/src/test/java/com/redhat/exhort/providers/Javascript_Envs_Test.java +++ b/src/test/java/com/redhat/exhort/providers/Javascript_Envs_Test.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/providers/Javascript_Provider_Test.java b/src/test/java/com/redhat/exhort/providers/Javascript_Provider_Test.java index ef28036a..f7664eda 100644 --- a/src/test/java/com/redhat/exhort/providers/Javascript_Provider_Test.java +++ b/src/test/java/com/redhat/exhort/providers/Javascript_Provider_Test.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/providers/PythonEnvironmentExtension.java b/src/test/java/com/redhat/exhort/providers/PythonEnvironmentExtension.java index b8f003dd..f462211d 100644 --- a/src/test/java/com/redhat/exhort/providers/PythonEnvironmentExtension.java +++ b/src/test/java/com/redhat/exhort/providers/PythonEnvironmentExtension.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/providers/Python_Provider_Test.java b/src/test/java/com/redhat/exhort/providers/Python_Provider_Test.java index a4c5fcdd..59e13fd0 100644 --- a/src/test/java/com/redhat/exhort/providers/Python_Provider_Test.java +++ b/src/test/java/com/redhat/exhort/providers/Python_Provider_Test.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/tools/Ecosystem_Test.java b/src/test/java/com/redhat/exhort/tools/Ecosystem_Test.java index 23e16991..7de7cd1e 100644 --- a/src/test/java/com/redhat/exhort/tools/Ecosystem_Test.java +++ b/src/test/java/com/redhat/exhort/tools/Ecosystem_Test.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/tools/OperationsTest.java b/src/test/java/com/redhat/exhort/tools/OperationsTest.java index 8c011c05..4cdfecdb 100644 --- a/src/test/java/com/redhat/exhort/tools/OperationsTest.java +++ b/src/test/java/com/redhat/exhort/tools/OperationsTest.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/tools/Operations_Test.java b/src/test/java/com/redhat/exhort/tools/Operations_Test.java index 0a3ea33f..5f87053c 100644 --- a/src/test/java/com/redhat/exhort/tools/Operations_Test.java +++ b/src/test/java/com/redhat/exhort/tools/Operations_Test.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/utils/PythonControllerBaseTest.java b/src/test/java/com/redhat/exhort/utils/PythonControllerBaseTest.java index 4cb3a01e..0bce9e7c 100644 --- a/src/test/java/com/redhat/exhort/utils/PythonControllerBaseTest.java +++ b/src/test/java/com/redhat/exhort/utils/PythonControllerBaseTest.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/utils/PythonControllerRealEnvTest.java b/src/test/java/com/redhat/exhort/utils/PythonControllerRealEnvTest.java index 441b2c85..5e01c07d 100644 --- a/src/test/java/com/redhat/exhort/utils/PythonControllerRealEnvTest.java +++ b/src/test/java/com/redhat/exhort/utils/PythonControllerRealEnvTest.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */ diff --git a/src/test/java/com/redhat/exhort/utils/PythonControllerVirtualEnvTest.java b/src/test/java/com/redhat/exhort/utils/PythonControllerVirtualEnvTest.java index e3ea11ff..1027f576 100644 --- a/src/test/java/com/redhat/exhort/utils/PythonControllerVirtualEnvTest.java +++ b/src/test/java/com/redhat/exhort/utils/PythonControllerVirtualEnvTest.java @@ -1,15 +1,16 @@ /* - * Copyright © 2023 Red Hat, Inc. + * Copyright 2023-2025 Trustify Dependency Analytics Authors * * 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 + * 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. */