From 00b66b892604acc28d5049679f0654d58a46bec0 Mon Sep 17 00:00:00 2001 From: Julian Ladisch Date: Tue, 5 Aug 2025 11:53:59 +0200 Subject: [PATCH 1/2] Fix `` to SPDX in pom.xml Automated license compliance checkers complain when the `` and the `` tag of a `` element in the pom.xml don't match. Any mismatch requires manual investigation. The current tag `Apache Software License - Version 2.0` doesn't match the official license name because the official license name is `Apache License` and not `Apache Software License`: https://www.apache.org/licenses/LICENSE-2.0 There are two official ways to fill the `` tag: * The full legal name of the license as specified by https://maven.apache.org/ref/3.9.11/maven-model/maven.html * The SPDX identifier as recommended by https://maven.apache.org/pom.html#Licenses During code review the full legal name was rejected as wrong and it was requested that the SPDX identifier must be used. Therefore the `` is changed from the full legal name to the SPDX identifier. This fixes the issue with the wrong license name. Signed-off-by: Julian Ladisch --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 51690ad9609c..e5f5923a326d 100644 --- a/pom.xml +++ b/pom.xml @@ -18,11 +18,11 @@ - Eclipse Public License - Version 2.0 + EPL-2.0 https://www.eclipse.org/legal/epl-2.0/ - Apache Software License - Version 2.0 + Apache-2.0 https://www.apache.org/licenses/LICENSE-2.0 From 73d62bbfd2de5284cbf993d75c75b9a3a29e5383 Mon Sep 17 00:00:00 2001 From: Julian Ladisch Date: Fri, 5 Sep 2025 11:21:08 +0200 Subject: [PATCH 2/2] Add license distribution tag, fix license URL Signed-off-by: Julian Ladisch --- pom.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e5f5923a326d..14d841e43425 100644 --- a/pom.xml +++ b/pom.xml @@ -20,10 +20,12 @@ EPL-2.0 https://www.eclipse.org/legal/epl-2.0/ + repo Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo