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

asf-gitbox-commits pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ant-antlibs-cyclonedx.git


The following commit(s) were added to refs/heads/main by this push:
     new a8ecf93  become more formal
a8ecf93 is described below

commit a8ecf93ecbd6364e3d96c853ec5639a67eaf8743
Author: Stefan Bodewig <[email protected]>
AuthorDate: Tue May 26 12:35:54 2026 +0200

    become more formal
---
 build.xml                                       | 12 ++++++------
 src/main/org/apache/ant/cyclonedx/ToolData.java |  2 +-
 src/tests/antunit/componentbom-test.xml         |  4 ++--
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/build.xml b/build.xml
index 5e0226f..4f838b7 100644
--- a/build.xml
+++ b/build.xml
@@ -38,8 +38,8 @@ under the License.
     </typedef>
     <!-- common definitions for SBOMs -->
     <cdx:organization
-        name="Apache Ant Development Team"
-        id="ant-team"
+        name="Apache Ant Project Management Committee"
+        id="ant-pmc"
         xmlns:cdx="antlib:org.apache.ant.cyclonedx">
       <url url="https://ant.apache.org/"/>
     </cdx:organization>
@@ -133,7 +133,7 @@ under the License.
           publisher="The Apache Software Foundation"
           manufacturerIsSupplier="true">
         <file file="${jarname}"/>
-        <manufacturer refid="ant-team"/>
+        <manufacturer refid="ant-pmc"/>
         <license refid="apache-2"/>
         <externalReferenceSet refid="ant-common-refs"/>
         <externalReferenceSet refid="antlib-ext-refs"/>
@@ -146,7 +146,7 @@ under the License.
           version="1.10.17"
           isExternal="true"
           id="ant">
-        <manufacturer refid="ant-team"/>
+        <manufacturer refid="ant-pmc"/>
         <license refid="apache-2"/>
         <externalReferenceSet refid="ant-common-refs"/>
         <externalReferenceSet refid="ant-ext-refs"/>
@@ -158,7 +158,7 @@ under the License.
           version="1.10.17"
           isExternal="true"
           id="ant-launcher">
-        <manufacturer refid="ant-team"/>
+        <manufacturer refid="ant-pmc"/>
         <license refid="apache-2"/>
         <externalReferenceSet refid="ant-common-refs"/>
         <externalReferenceSet refid="ant-ext-refs"/>
@@ -304,7 +304,7 @@ under the License.
             publisher="The Apache Software Foundation"
             xmlns:cdx="antlib:org.apache.ant.cyclonedx">
           <componentChildren>
-            <manufacturer refid="ant-team"/>
+            <manufacturer refid="ant-pmc"/>
             <license refid="apache-2"/>
             <externalReferenceSet refid="ant-common-refs"/>
             <externalReferenceSet refid="antlib-ext-refs"/>
diff --git a/src/main/org/apache/ant/cyclonedx/ToolData.java 
b/src/main/org/apache/ant/cyclonedx/ToolData.java
index a81fdb6..245caca 100644
--- a/src/main/org/apache/ant/cyclonedx/ToolData.java
+++ b/src/main/org/apache/ant/cyclonedx/ToolData.java
@@ -46,7 +46,7 @@ class ToolData {
         antlibComponent.setPublisher("The Apache Software Foundation");
 
         Organization manufacturer = new Organization();
-        manufacturer.setName("Apache Ant Development Team");
+        manufacturer.setName("Apache Ant Project Management Committee");
         manufacturer.addConfiguredUrl(new 
URLResource("https://ant.apache.org/";));
         antlibComponent.addManufacturer(manufacturer);
         antlibComponent.setManufacturerIsSupplier(true);
diff --git a/src/tests/antunit/componentbom-test.xml 
b/src/tests/antunit/componentbom-test.xml
index b39bbea..40a8cfa 100644
--- a/src/tests/antunit/componentbom-test.xml
+++ b/src/tests/antunit/componentbom-test.xml
@@ -91,7 +91,7 @@
     <au:assertPropertyEquals
         xmlns:au="antlib:org.apache.ant.antunit"
         name="bom.metadata.tools.components.component.manufacturer.name"
-        value="Apache Ant Development Team"/>
+        value="Apache Ant Project Management Committee"/>
     <au:assertPropertyEquals
         xmlns:au="antlib:org.apache.ant.antunit"
         name="bom.metadata.tools.components.component.manufacturer.url"
@@ -99,7 +99,7 @@
     <au:assertPropertyEquals
         xmlns:au="antlib:org.apache.ant.antunit"
         name="bom.metadata.tools.components.component.supplier.name"
-        value="Apache Ant Development Team"/>
+        value="Apache Ant Project Management Committee"/>
     <au:assertPropertyEquals
         xmlns:au="antlib:org.apache.ant.antunit"
         name="bom.metadata.tools.components.component.supplier.url"

Reply via email to