You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by cs...@apache.org on 2022/04/27 09:04:27 UTC

[maven] 01/01: Align assembly XSD version with plugin used

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

cstamas pushed a commit to branch align-assembly-xsd
in repository https://gitbox.apache.org/repos/asf/maven.git

commit b795577a5cfbc3a427142696b8a4ec52ea2c3066
Author: Tamas Cservenak <ta...@cservenak.net>
AuthorDate: Wed Apr 27 11:03:25 2022 +0200

    Align assembly XSD version with plugin used
    
    As title says, XSD is ancient old 2.0.0, while all
    latest assembly plugins uses 2.1.0.
    
    Not that this matters or changes anything at all,
    this is more about correctness.
---
 apache-maven/src/assembly/bin.xml | 4 ++--
 apache-maven/src/assembly/dir.xml | 4 ++--
 apache-maven/src/assembly/src.xml | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/apache-maven/src/assembly/bin.xml b/apache-maven/src/assembly/bin.xml
index 2ecbf30d4..f6a438ea9 100644
--- a/apache-maven/src/assembly/bin.xml
+++ b/apache-maven/src/assembly/bin.xml
@@ -17,8 +17,8 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
+<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
   <id>bin</id>
   <formats>
     <format>zip</format>
diff --git a/apache-maven/src/assembly/dir.xml b/apache-maven/src/assembly/dir.xml
index 76adb87cf..6a9d73fd6 100644
--- a/apache-maven/src/assembly/dir.xml
+++ b/apache-maven/src/assembly/dir.xml
@@ -17,8 +17,8 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
+<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
   <id>dir</id>
   <formats>
     <format>dir</format>
diff --git a/apache-maven/src/assembly/src.xml b/apache-maven/src/assembly/src.xml
index 9f43a0a79..6a6317d34 100644
--- a/apache-maven/src/assembly/src.xml
+++ b/apache-maven/src/assembly/src.xml
@@ -17,8 +17,8 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-          xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
+<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+          xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
   <id>src</id>
   <formats>
     <format>zip</format>