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

ggregory pushed a commit to branch 1.X
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git


The following commit(s) were added to refs/heads/1.X by this push:
     new 4681f653 Use XML Schema to validate assembly XML files
     new 5dfc2cb9 Merge branch '1.X' of 
https://github.com/apache/commons-beanutils.git into 1.X
4681f653 is described below

commit 4681f6539efec70c4a6a97ff3d2223dbf0739c2f
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Jan 22 07:58:47 2025 -0500

    Use XML Schema to validate assembly XML files
---
 src/main/assembly/bin.xml | 4 +++-
 src/main/assembly/src.xml | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/main/assembly/bin.xml b/src/main/assembly/bin.xml
index 4646766c..0a598cb5 100644
--- a/src/main/assembly/bin.xml
+++ b/src/main/assembly/bin.xml
@@ -14,7 +14,9 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
-<assembly>
+<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0";
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+    xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 
https://maven.apache.org/xsd/assembly-2.2.0.xsd";>
     <id>bin</id>
     <formats>
         <format>tar.gz</format>
diff --git a/src/main/assembly/src.xml b/src/main/assembly/src.xml
index ecd8d5a6..a23e2cc1 100644
--- a/src/main/assembly/src.xml
+++ b/src/main/assembly/src.xml
@@ -14,7 +14,9 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
-<assembly>
+<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0";
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+    xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 
https://maven.apache.org/xsd/assembly-2.2.0.xsd";>
     <id>src</id>
     <formats>
         <format>tar.gz</format>

Reply via email to