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

olamy pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/maven-build-cache-extension.git


The following commit(s) were added to refs/heads/master by this push:
     new dfdbd0f  update XML headers to build-cache version 1.2.0 (#201)
dfdbd0f is described below

commit dfdbd0f39efcc80c7d30601593f132466839a6c6
Author: Sebastian Tiemann <sepa...@gmail.com>
AuthorDate: Tue Apr 15 02:21:13 2025 +0200

    update XML headers to build-cache version 1.2.0 (#201)
---
 pom.xml                                                           | 2 +-
 src/site/markdown/how-to.md                                       | 8 ++++----
 src/site/resources/maven-build-cache-config.xml                   | 4 ++--
 .../projects/build-extension/.mvn/maven-build-cache-config.xml    | 3 ++-
 .../projects/core-extension/.mvn/maven-build-cache-config.xml     | 3 ++-
 .../projects/duplicate-goals/.mvn/maven-build-cache-config.xml    | 3 ++-
 .../.mvn/maven-build-cache-config.xml                             | 3 ++-
 .../.mvn/maven-build-cache-config.xml                             | 3 ++-
 .../projects/include-exclude/.mvn/maven-build-cache-config.xml    | 3 ++-
 .../projects/mandatory-clean/.mvn/maven-build-cache-config.xml    | 3 ++-
 .../projects/mbuildcache-21/.mvn/maven-build-cache-config.xml     | 3 ++-
 .../.mvn/maven-build-cache-config.xml                             | 4 ++--
 .../projects/mbuildcache-67/.mvn/maven-build-cache-config.xml     | 3 ++-
 .../.mvn/maven-build-cache-config.xml                             | 3 ++-
 .../projects/mbuildcache-76/.mvn/maven-build-cache-config.xml     | 3 ++-
 .../projects/mbuildcache-87/.mvn/maven-build-cache-config.xml     | 3 ++-
 .../mbuildcache-incremental/.mvn/maven-build-cache-config.xml     | 3 ++-
 .../projects/per-module-flags/.mvn/maven-build-cache-config.xml   | 3 ++-
 .../projects/remote-cache-dav/.mvn/maven-build-cache-config.xml   | 3 ++-
 .../apache/maven/buildcache/xml/build-cache-build-instance.xml    | 4 ++--
 .../apache/maven/buildcache/xml/build-cache-config-instance.xml   | 4 ++--
 .../org/apache/maven/buildcache/xml/build-cache-diff-instance.xml | 4 ++--
 .../apache/maven/buildcache/xml/build-cache-report-instance.xml   | 4 ++--
 23 files changed, 47 insertions(+), 32 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9a5b4cc..b42a1d7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -334,7 +334,7 @@ under the License.
             <model>src/main/mdo/build-cache-diff.mdo</model>
             <model>src/main/mdo/build-cache-report.mdo</model>
           </models>
-          <version>1.0.0</version>
+          <version>1.2.0</version>
         </configuration>
         <executions>
           <execution>
diff --git a/src/site/markdown/how-to.md b/src/site/markdown/how-to.md
index e077a0a..a4ebbb7 100644
--- a/src/site/markdown/how-to.md
+++ b/src/site/markdown/how-to.md
@@ -26,8 +26,8 @@ Minimal config
 
 ```xml
 <?xml version="1.0" encoding="UTF-8" ?>
-<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.0.0 
https://maven.apache.org/xsd/build-cache-config-1.0.0.xsd";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
 
     <configuration>
         <enabled>true</enabled>
@@ -168,8 +168,8 @@ to `executionControl`:
 
 ```xml
 <?xml version="1.0" encoding="UTF-8" ?>
-<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.0.0 
https://maven.apache.org/xsd/build-cache-config-1.0.0.xsd";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
     <configuration>
         ...
     </configuration>
diff --git a/src/site/resources/maven-build-cache-config.xml 
b/src/site/resources/maven-build-cache-config.xml
index b31c955..1fb0ab9 100644
--- a/src/site/resources/maven-build-cache-config.xml
+++ b/src/site/resources/maven-build-cache-config.xml
@@ -15,8 +15,8 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
-<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.0.0 
https://maven.apache.org/xsd/build-cache-config-1.0.0.xsd";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
 
     <!--
         Template Maven build cache configuration
diff --git 
a/src/test/projects/build-extension/.mvn/maven-build-cache-config.xml 
b/src/test/projects/build-extension/.mvn/maven-build-cache-config.xml
index f23c467..810f221 100644
--- a/src/test/projects/build-extension/.mvn/maven-build-cache-config.xml
+++ b/src/test/projects/build-extension/.mvn/maven-build-cache-config.xml
@@ -19,6 +19,7 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cache xmlns="http://maven.apache.org/CACHE-CONFIG/1.0.0";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
 
 </cache>
diff --git a/src/test/projects/core-extension/.mvn/maven-build-cache-config.xml 
b/src/test/projects/core-extension/.mvn/maven-build-cache-config.xml
index f23c467..810f221 100644
--- a/src/test/projects/core-extension/.mvn/maven-build-cache-config.xml
+++ b/src/test/projects/core-extension/.mvn/maven-build-cache-config.xml
@@ -19,6 +19,7 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cache xmlns="http://maven.apache.org/CACHE-CONFIG/1.0.0";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
 
 </cache>
diff --git 
a/src/test/projects/duplicate-goals/.mvn/maven-build-cache-config.xml 
b/src/test/projects/duplicate-goals/.mvn/maven-build-cache-config.xml
index f23c467..810f221 100644
--- a/src/test/projects/duplicate-goals/.mvn/maven-build-cache-config.xml
+++ b/src/test/projects/duplicate-goals/.mvn/maven-build-cache-config.xml
@@ -19,6 +19,7 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cache xmlns="http://maven.apache.org/CACHE-CONFIG/1.0.0";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
 
 </cache>
diff --git 
a/src/test/projects/forked-executions-core-extension-remote/.mvn/maven-build-cache-config.xml
 
b/src/test/projects/forked-executions-core-extension-remote/.mvn/maven-build-cache-config.xml
index 573de40..48e0a9b 100644
--- 
a/src/test/projects/forked-executions-core-extension-remote/.mvn/maven-build-cache-config.xml
+++ 
b/src/test/projects/forked-executions-core-extension-remote/.mvn/maven-build-cache-config.xml
@@ -19,7 +19,8 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.0.0";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
     <configuration>
         <remote>
             <url>http://to-be-overridden-on-cli-and-point-to-wiremock</url>
diff --git 
a/src/test/projects/forked-executions-core-extension/.mvn/maven-build-cache-config.xml
 
b/src/test/projects/forked-executions-core-extension/.mvn/maven-build-cache-config.xml
index f23c467..810f221 100644
--- 
a/src/test/projects/forked-executions-core-extension/.mvn/maven-build-cache-config.xml
+++ 
b/src/test/projects/forked-executions-core-extension/.mvn/maven-build-cache-config.xml
@@ -19,6 +19,7 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cache xmlns="http://maven.apache.org/CACHE-CONFIG/1.0.0";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
 
 </cache>
diff --git 
a/src/test/projects/include-exclude/.mvn/maven-build-cache-config.xml 
b/src/test/projects/include-exclude/.mvn/maven-build-cache-config.xml
index 02a15bd..cb59eb4 100644
--- a/src/test/projects/include-exclude/.mvn/maven-build-cache-config.xml
+++ b/src/test/projects/include-exclude/.mvn/maven-build-cache-config.xml
@@ -17,7 +17,8 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-<cache xmlns="http://maven.apache.org/CACHE-CONFIG/1.0.0";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+          xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
        <input>
                <global>
                        <includes>
diff --git 
a/src/test/projects/mandatory-clean/.mvn/maven-build-cache-config.xml 
b/src/test/projects/mandatory-clean/.mvn/maven-build-cache-config.xml
index 9f7c588..2a06186 100644
--- a/src/test/projects/mandatory-clean/.mvn/maven-build-cache-config.xml
+++ b/src/test/projects/mandatory-clean/.mvn/maven-build-cache-config.xml
@@ -19,7 +19,8 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cache xmlns="http://maven.apache.org/CACHE-CONFIG/1.0.0";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
 
     <configuration>
         <mandatoryClean>true</mandatoryClean>
diff --git a/src/test/projects/mbuildcache-21/.mvn/maven-build-cache-config.xml 
b/src/test/projects/mbuildcache-21/.mvn/maven-build-cache-config.xml
index f23c467..810f221 100644
--- a/src/test/projects/mbuildcache-21/.mvn/maven-build-cache-config.xml
+++ b/src/test/projects/mbuildcache-21/.mvn/maven-build-cache-config.xml
@@ -19,6 +19,7 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cache xmlns="http://maven.apache.org/CACHE-CONFIG/1.0.0";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
 
 </cache>
diff --git 
a/src/test/projects/mbuildcache-56-mojo-parameter-as-method/.mvn/maven-build-cache-config.xml
 
b/src/test/projects/mbuildcache-56-mojo-parameter-as-method/.mvn/maven-build-cache-config.xml
index 8132d1d..fd6934e 100644
--- 
a/src/test/projects/mbuildcache-56-mojo-parameter-as-method/.mvn/maven-build-cache-config.xml
+++ 
b/src/test/projects/mbuildcache-56-mojo-parameter-as-method/.mvn/maven-build-cache-config.xml
@@ -19,8 +19,8 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.0.0 
https://maven.apache.org/xsd/build-cache-config-1.0.0.xsd";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
   <configuration>
     <enabled>true</enabled>
   </configuration>
diff --git a/src/test/projects/mbuildcache-67/.mvn/maven-build-cache-config.xml 
b/src/test/projects/mbuildcache-67/.mvn/maven-build-cache-config.xml
index f23c467..810f221 100644
--- a/src/test/projects/mbuildcache-67/.mvn/maven-build-cache-config.xml
+++ b/src/test/projects/mbuildcache-67/.mvn/maven-build-cache-config.xml
@@ -19,6 +19,7 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cache xmlns="http://maven.apache.org/CACHE-CONFIG/1.0.0";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
 
 </cache>
diff --git 
a/src/test/projects/mbuildcache-74-clean-cache-any-artifact/.mvn/maven-build-cache-config.xml
 
b/src/test/projects/mbuildcache-74-clean-cache-any-artifact/.mvn/maven-build-cache-config.xml
index 1bbaaab..f992675 100644
--- 
a/src/test/projects/mbuildcache-74-clean-cache-any-artifact/.mvn/maven-build-cache-config.xml
+++ 
b/src/test/projects/mbuildcache-74-clean-cache-any-artifact/.mvn/maven-build-cache-config.xml
@@ -19,7 +19,8 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cache xmlns="http://maven.apache.org/CACHE-CONFIG/1.0.0";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
   <configuration>
     <local>
       <maxBuildsCached>1</maxBuildsCached>
diff --git a/src/test/projects/mbuildcache-76/.mvn/maven-build-cache-config.xml 
b/src/test/projects/mbuildcache-76/.mvn/maven-build-cache-config.xml
index 67b961c..bb61336 100644
--- a/src/test/projects/mbuildcache-76/.mvn/maven-build-cache-config.xml
+++ b/src/test/projects/mbuildcache-76/.mvn/maven-build-cache-config.xml
@@ -19,7 +19,8 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cache xmlns="http://maven.apache.org/CACHE-CONFIG/1.0.0";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
   <configuration>
     <projectVersioning calculateProjectVersionChecksum="true"/>
   </configuration>
diff --git a/src/test/projects/mbuildcache-87/.mvn/maven-build-cache-config.xml 
b/src/test/projects/mbuildcache-87/.mvn/maven-build-cache-config.xml
index 8e416ee..80d7cd5 100644
--- a/src/test/projects/mbuildcache-87/.mvn/maven-build-cache-config.xml
+++ b/src/test/projects/mbuildcache-87/.mvn/maven-build-cache-config.xml
@@ -19,7 +19,8 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.0.0";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
   <input>
     <plugins>
       <plugin groupId="org.apache.maven.plugins" 
artifactId="maven-compiler-plugin" excludeDependencies="true">
diff --git 
a/src/test/projects/mbuildcache-incremental/.mvn/maven-build-cache-config.xml 
b/src/test/projects/mbuildcache-incremental/.mvn/maven-build-cache-config.xml
index 94a2c5b..d51859e 100644
--- 
a/src/test/projects/mbuildcache-incremental/.mvn/maven-build-cache-config.xml
+++ 
b/src/test/projects/mbuildcache-incremental/.mvn/maven-build-cache-config.xml
@@ -19,7 +19,8 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cache xmlns="http://maven.apache.org/CACHE-CONFIG/1.0.0";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
 
     <configuration>
         <attachedOutputs>
diff --git 
a/src/test/projects/per-module-flags/.mvn/maven-build-cache-config.xml 
b/src/test/projects/per-module-flags/.mvn/maven-build-cache-config.xml
index f23c467..810f221 100644
--- a/src/test/projects/per-module-flags/.mvn/maven-build-cache-config.xml
+++ b/src/test/projects/per-module-flags/.mvn/maven-build-cache-config.xml
@@ -19,6 +19,7 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cache xmlns="http://maven.apache.org/CACHE-CONFIG/1.0.0";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
 
 </cache>
diff --git 
a/src/test/projects/remote-cache-dav/.mvn/maven-build-cache-config.xml 
b/src/test/projects/remote-cache-dav/.mvn/maven-build-cache-config.xml
index 7389571..3a2f874 100644
--- a/src/test/projects/remote-cache-dav/.mvn/maven-build-cache-config.xml
+++ b/src/test/projects/remote-cache-dav/.mvn/maven-build-cache-config.xml
@@ -14,7 +14,8 @@
     limitations under the License.
 
 -->
-<cache xmlns="http://maven.apache.org/CACHE-CONFIG/1.0.0";>
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
https://maven.apache.org/xsd/build-cache-config-1.2.0.xsd";>
 
     <configuration>
         <local>
diff --git 
a/src/test/resources/org/apache/maven/buildcache/xml/build-cache-build-instance.xml
 
b/src/test/resources/org/apache/maven/buildcache/xml/build-cache-build-instance.xml
index 69ebb4a..e0b8a8c 100644
--- 
a/src/test/resources/org/apache/maven/buildcache/xml/build-cache-build-instance.xml
+++ 
b/src/test/resources/org/apache/maven/buildcache/xml/build-cache-build-instance.xml
@@ -19,9 +19,9 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<build xmlns="http://maven.apache.org/BUILD-CACHE-BUILD/1.0.0";
+<build xmlns="http://maven.apache.org/BUILD-CACHE-BUILD/1.2.0";
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-BUILD/1.0.0 
../../../../../../../../target/generated-sources/modello/cache-build-1.0.0.xsd">
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-BUILD/1.2.0 
../../../../../../../../target/generated-resources/modello/build-cache-build-1.2.0.xsd">
     <cacheImplementationVersion>v3</cacheImplementationVersion>
     <buildTime>1980-03-23T10:20:15.000</buildTime>
     <buildServer>my-server.com</buildServer>
diff --git 
a/src/test/resources/org/apache/maven/buildcache/xml/build-cache-config-instance.xml
 
b/src/test/resources/org/apache/maven/buildcache/xml/build-cache-config-instance.xml
index d2d0d82..c584010 100644
--- 
a/src/test/resources/org/apache/maven/buildcache/xml/build-cache-config-instance.xml
+++ 
b/src/test/resources/org/apache/maven/buildcache/xml/build-cache-config-instance.xml
@@ -19,9 +19,9 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.0.0";
+<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0";
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.0.0 
../../../../../../../../target/generated-sources/modello/cache-config-1.0.0.xsd">
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.2.0 
../../../../../../../../target/generated-resources/modello/build-cache-config-1.2.0.xsd">
 
     <configuration>
         <enabled>true</enabled>
diff --git 
a/src/test/resources/org/apache/maven/buildcache/xml/build-cache-diff-instance.xml
 
b/src/test/resources/org/apache/maven/buildcache/xml/build-cache-diff-instance.xml
index 18ac7ed..50355ff 100644
--- 
a/src/test/resources/org/apache/maven/buildcache/xml/build-cache-diff-instance.xml
+++ 
b/src/test/resources/org/apache/maven/buildcache/xml/build-cache-diff-instance.xml
@@ -19,9 +19,9 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<diff xmlns="http://maven.apache.org/BUILD-CACHE-DIFF/1.0.0";
+<diff xmlns="http://maven.apache.org/BUILD-CACHE-DIFF/1.2.0";
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-DIFF/1.0.0 
../../../../../../../../target/generated-sources/modello/cache-diff-1.0.0.xsd">
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-DIFF/1.2.0 
../../../../../../../../target/generated-resources/modello/build-cache-diff-1.2.0.xsd">
 
     <mismatches>
         <mismatch item="" />
diff --git 
a/src/test/resources/org/apache/maven/buildcache/xml/build-cache-report-instance.xml
 
b/src/test/resources/org/apache/maven/buildcache/xml/build-cache-report-instance.xml
index 87257ec..8c9e585 100644
--- 
a/src/test/resources/org/apache/maven/buildcache/xml/build-cache-report-instance.xml
+++ 
b/src/test/resources/org/apache/maven/buildcache/xml/build-cache-report-instance.xml
@@ -19,9 +19,9 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-<cacheReport xmlns="http://maven.apache.org/BUILD-CACHE-REPORT/1.0.0";
+<cacheReport xmlns="http://maven.apache.org/BUILD-CACHE-REPORT/1.2.0";
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-REPORT/1.0.0 
../../../../../../../../target/generated-sources/modello/cache-report-1.0.0.xsd">
+       xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-REPORT/1.2.0 
../../../../../../../../target/generated-resources/modello/build-cache-report-1.2.0.xsd">
 
     <projects>
         <project>

Reply via email to