This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-dist-tool.git


The following commit(s) were added to refs/heads/master by this push:
     new c93c2f6  update KEYS check agains source in Git maven-parent
c93c2f6 is described below

commit c93c2f6dbc9c0fe7ad1a852d9a5824793211e06a
Author: Hervé Boutemy <hbout...@apache.org>
AuthorDate: Sat Mar 8 18:55:15 2025 +0100

    update KEYS check agains source in Git maven-parent
---
 .../org/apache/maven/dist/tools/pgp/CheckPgpKeysReport.java    | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git 
a/src/main/java/org/apache/maven/dist/tools/pgp/CheckPgpKeysReport.java 
b/src/main/java/org/apache/maven/dist/tools/pgp/CheckPgpKeysReport.java
index 0827f06..a26342a 100644
--- a/src/main/java/org/apache/maven/dist/tools/pgp/CheckPgpKeysReport.java
+++ b/src/main/java/org/apache/maven/dist/tools/pgp/CheckPgpKeysReport.java
@@ -47,8 +47,9 @@ public class CheckPgpKeysReport extends 
AbstractDistCheckReport {
     /** Constant <code>FAILURES_FILENAME="check-pgp-keys.log"</code> */
     public static final String FAILURES_FILENAME = "check-pgp-keys.log";
 
-    /** Constant <code>PROJECT_KEYS_URL="<a 
href="https://svn.apache.org/repos/asf/maven/";>...</a>"{trunked}</code> */
-    public static final String PROJECT_KEYS_URL = 
"https://svn.apache.org/repos/asf/maven/project/KEYS";;
+    /** Constant <code>PROJECT_KEYS_URL="<a 
href="https://raw.githubusercontent.com/apache/maven-parent/refs/heads/master/KEYS";>...</a>"{trunked}</code>
 */
+    public static final String PROJECT_KEYS_URL =
+            
"https://raw.githubusercontent.com/apache/maven-parent/refs/heads/master/KEYS";;
 
     /** Constant <code>DIST_KEYS_URL="<a 
href="https://dist.apache.org/repos/dist/rele";>...</a>"{trunked}</code> */
     public static final String DIST_KEYS_URL = 
"https://dist.apache.org/repos/dist/release/maven/KEYS";;
@@ -111,13 +112,14 @@ public class CheckPgpKeysReport extends 
AbstractDistCheckReport {
         sink.paragraph_();
         sink.list();
         sink.listItem();
-        sink.rawText("official Maven PGP KEYS file from distribution area 
(<b>PMC write only</b>) ");
+        sink.rawText("official Maven PGP KEYS file from distribution area 
origin (<b>PMC write only</b>) ");
         sink.link(DIST_KEYS_URL);
         sink.rawText(DIST_KEYS_URL);
         sink.link_();
         sink.listItem_();
         sink.listItem();
-        sink.rawText("intermediate <b>committer write</b> one in Maven 
Subversion tree ");
+        sink.rawText(
+                "match <b>committer write</b> one in <a 
href='https://github.com/apache/maven-parent/'><code>maven-parent</code> 
Git</a> ");
         sink.link(PROJECT_KEYS_URL);
         sink.rawText(PROJECT_KEYS_URL);
         sink.link_();

Reply via email to