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

ppkarwasz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


The following commit(s) were added to refs/heads/main by this push:
     new 25cad9e  Simplify the `<developers>` section (#490)
25cad9e is described below

commit 25cad9e5643334578c4818231402e0c73885dc2a
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Wed Jul 22 15:55:52 2026 +0200

    Simplify the `<developers>` section (#490)
    
    * Simplify `<developers>` section to stable team entries
    
    Replace the fixed list of named PMC members with two role-based team
    entries: the PMC (`[email protected]`) for development matters and
    the Security Team (`[email protected]`) as the security
    contact. Both carry the ASF organization, a team/security page URL, and
    a free-form role.
    
    A hand-maintained roster is always incomplete, its contact details go
    stale in immutable releases, and naming individuals implies a support
    obligation they have not signed up for. Git history and the project team
    page already track contributors accurately.
    
    The section cannot be dropped entirely: Maven Central requires at least
    one developer with a name and email. The two meta-entries satisfy that
    while pointing at durable, monitored channels. `<developers>` is
    inherited by child projects, so a comment documents that these entries
    should not be overridden downstream.
    
    Assisted-By: Claude Opus 4.8 (1M context) <[email protected]>
    
    * fix: restore Gary's entry
    
    * Simplify comment and remove individuals
    
    * fix: restore Gary's entry (again)
    
    ---------
    
    Co-authored-by: Volkan Yazıcı <[email protected]>
---
 pom.xml | 56 ++++++++++++++++++++------------------------------------
 1 file changed, 20 insertions(+), 36 deletions(-)

diff --git a/pom.xml b/pom.xml
index 760d15d..38095d0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -43,60 +43,44 @@
 
   <inceptionYear>1999</inceptionYear>
 
+  <!-- Maven Central requires a `developers` element containing at least one 
`developer` to with a `name` and an `email`. -->
   <developers>
 
     <developer>
-      <id>ggregory</id>
-      <name>Gary Gregory</name>
-      <email>[email protected]</email>
-      <url>https://www.garygregory.com</url>
+      <id>logging-dev</id>
+      <name>Apache Logging Services Project Management Committee (PMC)</name>
+      <email>[email protected]</email>
+      <url>https://logging.apache.org/team-list.html</url>
       <organization>The Apache Software Foundation</organization>
       <organizationUrl>https://www.apache.org/</organizationUrl>
       <roles>
-        <role>PMC Member</role>
+        <role>PMC</role>
       </roles>
-      <timezone>America/New_York</timezone>
     </developer>
 
     <developer>
-      <id>grobmeier</id>
-      <name>Christian Grobmeier</name>
-      <email>[email protected]</email>
+      <id>logging-security</id>
+      <name>Apache Logging Services Security Team</name>
+      <email>[email protected]</email>
+      <url>https://logging.apache.org/security.html</url>
+      <organization>The Apache Software Foundation</organization>
+      <organizationUrl>https://www.apache.org/</organizationUrl>
       <roles>
-        <role>PMC Member</role>
+        <role>security</role>
       </roles>
-      <timezone>Europe/Berlin</timezone>
     </developer>
 
     <developer>
-      <id>mattsicker</id>
-      <name>Matt Sicker</name>
-      <email>[email protected]</email>
-      <organization>Apple</organization>
-      <roles>
-        <role>PMC Member</role>
-      </roles>
-      <timezone>America/Chicago</timezone>
-    </developer>
-
-    <developer>
-      <id>pkarwasz</id>
-      <name>Piotr P. Karwasz</name>
-      <email>[email protected]</email>
+      <id>ggregory</id>
+      <name>Gary Gregory</name>
+      <email>[email protected]</email>
+      <url>https://www.garygregory.com</url>
+      <organization>The Apache Software Foundation</organization>
+      <organizationUrl>https://www.apache.org/</organizationUrl>
       <roles>
         <role>PMC Member</role>
       </roles>
-      <timezone>Europe/Warsaw</timezone>
-    </developer>
-
-    <developer>
-      <id>vy</id>
-      <name>Volkan Yazıcı</name>
-      <email>[email protected]</email>
-      <roles>
-        <role>PMC Chair</role>
-      </roles>
-      <timezone>Europe/Amsterdam</timezone>
+      <timezone>America/New_York</timezone>
     </developer>
 
   </developers>

Reply via email to