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

gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-clean-plugin.git

commit e35167df10c12aaa12ec0da8a9466c2d6c5123b1
Author: Guillaume Nodet <gno...@gmail.com>
AuthorDate: Wed Jun 26 10:17:24 2024 +0200

    Code formatting on ITs pom.xml
---
 pom.xml                                            | 41 +++++++++------
 src/it/dangling-symlinks/pom.xml                   |  6 +--
 src/it/default/pom.xml                             |  6 +--
 src/it/exclude-default-dirs/pom.xml                |  6 +--
 src/it/fast-delete/pom.xml                         | 58 ++++++++++------------
 src/it/file-sets-absolute-paths/child-a/pom.xml    |  8 +--
 src/it/file-sets-absolute-paths/pom.xml            |  6 +--
 src/it/file-sets-includes-excludes/pom.xml         |  6 +--
 src/it/file-sets-relative-paths/child-a/pom.xml    |  8 +--
 src/it/file-sets-relative-paths/child-b/pom.xml    |  8 +--
 src/it/file-sets-relative-paths/pom.xml            |  6 +--
 src/it/non-existent-base-dirs/pom.xml              |  6 +--
 src/it/only-test-clean/pom.xml                     |  7 +--
 src/it/special-characters/pom.xml                  |  6 +--
 src/it/symlink-dont-follow/pom.xml                 |  6 +--
 src/test/resources/unit/basic-clean-test/pom.xml   |  2 +-
 src/test/resources/unit/empty-clean-test/pom.xml   |  2 +-
 src/test/resources/unit/fileset-clean-test/pom.xml |  4 +-
 .../resources/unit/invalid-directory-test/pom.xml  |  2 +-
 src/test/resources/unit/locked-file-test/pom.xml   |  2 +-
 .../resources/unit/missing-directory-test/pom.xml  |  2 +-
 src/test/resources/unit/nested-clean-test/pom.xml  |  2 +-
 22 files changed, 78 insertions(+), 122 deletions(-)

diff --git a/pom.xml b/pom.xml
index dc34bcf..c9e5ac3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -140,20 +140,33 @@ under the License.
   </dependencies>
 
   <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-plugin-plugin</artifactId>
-        <version>${version.maven-plugin-tools}</version>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <redirectTestOutputToFile>true</redirectTestOutputToFile>
-        </configuration>
-      </plugin>
-    </plugins>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>com.diffplug.spotless</groupId>
+          <artifactId>spotless-maven-plugin</artifactId>
+          <configuration>
+            <java>
+              <includes>
+                <include>src/**/*.java</include>
+              </includes>
+            </java>
+            <pom>
+              <includes>
+                <include>**/pom.xml</include>
+              </includes>
+            </pom>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <configuration>
+            <redirectTestOutputToFile>true</redirectTestOutputToFile>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
   </build>
 
   <profiles>
diff --git a/src/it/dangling-symlinks/pom.xml b/src/it/dangling-symlinks/pom.xml
index 7e185f5..0431c49 100644
--- a/src/it/dangling-symlinks/pom.xml
+++ b/src/it/dangling-symlinks/pom.xml
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
@@ -18,10 +17,7 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>test</groupId>
diff --git a/src/it/default/pom.xml b/src/it/default/pom.xml
index fa866df..c625193 100644
--- a/src/it/default/pom.xml
+++ b/src/it/default/pom.xml
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
@@ -18,10 +17,7 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>test</groupId>
diff --git a/src/it/exclude-default-dirs/pom.xml 
b/src/it/exclude-default-dirs/pom.xml
index 210817a..b33c604 100644
--- a/src/it/exclude-default-dirs/pom.xml
+++ b/src/it/exclude-default-dirs/pom.xml
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
@@ -18,10 +17,7 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>test</groupId>
diff --git a/src/it/fast-delete/pom.xml b/src/it/fast-delete/pom.xml
index 9203056..f501863 100644
--- a/src/it/fast-delete/pom.xml
+++ b/src/it/fast-delete/pom.xml
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
@@ -18,35 +17,32 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-                xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
-       <modelVersion>4.0.0</modelVersion>
-
-       <groupId>test</groupId>
-       <artifactId>fast-delete</artifactId>
-       <version>1.0-SNAPSHOT</version>
-
-       <name>Fast delete</name>
-       <description>Check that fast delete is invoked.</description>
-
-       <properties>
-               
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-       </properties>
-
-       <build>
-               <plugins>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-clean-plugin</artifactId>
-                               <version>@project.version@</version>
-                               <configuration>
-                                       <fast>true</fast>
-                                       
<fastDir>${project.basedir}${file.separator}.fastdir</fastDir>
-                               </configuration>
-                       </plugin>
-               </plugins>
-       </build>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>test</groupId>
+  <artifactId>fast-delete</artifactId>
+  <version>1.0-SNAPSHOT</version>
+
+  <name>Fast delete</name>
+  <description>Check that fast delete is invoked.</description>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+  </properties>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-clean-plugin</artifactId>
+        <version>@project.version@</version>
+        <configuration>
+          <fast>true</fast>
+          <fastDir>${project.basedir}${file.separator}.fastdir</fastDir>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
 </project>
diff --git a/src/it/file-sets-absolute-paths/child-a/pom.xml 
b/src/it/file-sets-absolute-paths/child-a/pom.xml
index ed4536d..07bfc77 100644
--- a/src/it/file-sets-absolute-paths/child-a/pom.xml
+++ b/src/it/file-sets-absolute-paths/child-a/pom.xml
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
@@ -18,10 +17,7 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
@@ -30,7 +26,7 @@ under the License.
     <version>1.0-SNAPSHOT</version>
   </parent>
 
-    <artifactId>child-a</artifactId>
+  <artifactId>child-a</artifactId>
   <version>1.0-SNAPSHOT</version>
 
   <name>Child A</name>
diff --git a/src/it/file-sets-absolute-paths/pom.xml 
b/src/it/file-sets-absolute-paths/pom.xml
index dfa87f6..ce9e654 100644
--- a/src/it/file-sets-absolute-paths/pom.xml
+++ b/src/it/file-sets-absolute-paths/pom.xml
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
@@ -18,10 +17,7 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>test</groupId>
diff --git a/src/it/file-sets-includes-excludes/pom.xml 
b/src/it/file-sets-includes-excludes/pom.xml
index cdae058..dfee54c 100644
--- a/src/it/file-sets-includes-excludes/pom.xml
+++ b/src/it/file-sets-includes-excludes/pom.xml
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
@@ -18,10 +17,7 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>test</groupId>
diff --git a/src/it/file-sets-relative-paths/child-a/pom.xml 
b/src/it/file-sets-relative-paths/child-a/pom.xml
index a1ff584..53fcca7 100644
--- a/src/it/file-sets-relative-paths/child-a/pom.xml
+++ b/src/it/file-sets-relative-paths/child-a/pom.xml
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
@@ -18,10 +17,7 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
@@ -30,7 +26,7 @@ under the License.
     <version>1.0-SNAPSHOT</version>
   </parent>
 
-    <artifactId>child-a</artifactId>
+  <artifactId>child-a</artifactId>
   <version>1.0-SNAPSHOT</version>
 
   <name>Child A</name>
diff --git a/src/it/file-sets-relative-paths/child-b/pom.xml 
b/src/it/file-sets-relative-paths/child-b/pom.xml
index 6821d50..5795647 100644
--- a/src/it/file-sets-relative-paths/child-b/pom.xml
+++ b/src/it/file-sets-relative-paths/child-b/pom.xml
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
@@ -18,10 +17,7 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
@@ -30,7 +26,7 @@ under the License.
     <version>1.0-SNAPSHOT</version>
   </parent>
 
-    <artifactId>child-b</artifactId>
+  <artifactId>child-b</artifactId>
   <version>1.0-SNAPSHOT</version>
 
   <name>Child B</name>
diff --git a/src/it/file-sets-relative-paths/pom.xml 
b/src/it/file-sets-relative-paths/pom.xml
index 4117bdf..ab708d4 100644
--- a/src/it/file-sets-relative-paths/pom.xml
+++ b/src/it/file-sets-relative-paths/pom.xml
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
@@ -18,10 +17,7 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>test</groupId>
diff --git a/src/it/non-existent-base-dirs/pom.xml 
b/src/it/non-existent-base-dirs/pom.xml
index 16b2242..e547357 100644
--- a/src/it/non-existent-base-dirs/pom.xml
+++ b/src/it/non-existent-base-dirs/pom.xml
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
@@ -18,10 +17,7 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>test</groupId>
diff --git a/src/it/only-test-clean/pom.xml b/src/it/only-test-clean/pom.xml
index 716e8de..a23365f 100644
--- a/src/it/only-test-clean/pom.xml
+++ b/src/it/only-test-clean/pom.xml
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
@@ -18,10 +17,7 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>test</groupId>
@@ -73,5 +69,4 @@ under the License.
     </profile>
   </profiles>
 
-
 </project>
diff --git a/src/it/special-characters/pom.xml 
b/src/it/special-characters/pom.xml
index 35cd8b8..911e607 100644
--- a/src/it/special-characters/pom.xml
+++ b/src/it/special-characters/pom.xml
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
@@ -18,10 +17,7 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>org.apache.maven.plugins.clean.its</groupId>
diff --git a/src/it/symlink-dont-follow/pom.xml 
b/src/it/symlink-dont-follow/pom.xml
index 88e8c07..de0c2d9 100644
--- a/src/it/symlink-dont-follow/pom.xml
+++ b/src/it/symlink-dont-follow/pom.xml
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
@@ -18,10 +17,7 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>test</groupId>
diff --git a/src/test/resources/unit/basic-clean-test/pom.xml 
b/src/test/resources/unit/basic-clean-test/pom.xml
index ba901f0..6981ce7 100644
--- a/src/test/resources/unit/basic-clean-test/pom.xml
+++ b/src/test/resources/unit/basic-clean-test/pom.xml
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <!--
     Licensed to the Apache Software Foundation (ASF) under one
     or more contributor license agreements.  See the NOTICE file
@@ -16,7 +17,6 @@
     specific language governing permissions and limitations
     under the License.
 -->
-
 <project>
   <build>
     <plugins>
diff --git a/src/test/resources/unit/empty-clean-test/pom.xml 
b/src/test/resources/unit/empty-clean-test/pom.xml
index 3d7000d..54ae6b0 100644
--- a/src/test/resources/unit/empty-clean-test/pom.xml
+++ b/src/test/resources/unit/empty-clean-test/pom.xml
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <!--
     Licensed to the Apache Software Foundation (ASF) under one
     or more contributor license agreements.  See the NOTICE file
@@ -16,7 +17,6 @@
     specific language governing permissions and limitations
     under the License.
 -->
-
 <project>
   <build>
     <plugins>
diff --git a/src/test/resources/unit/fileset-clean-test/pom.xml 
b/src/test/resources/unit/fileset-clean-test/pom.xml
index 2457c4e..90c0971 100644
--- a/src/test/resources/unit/fileset-clean-test/pom.xml
+++ b/src/test/resources/unit/fileset-clean-test/pom.xml
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <!--
     Licensed to the Apache Software Foundation (ASF) under one
     or more contributor license agreements.  See the NOTICE file
@@ -16,7 +17,6 @@
     specific language governing permissions and limitations
     under the License.
 -->
-
 <project>
   <build>
     <plugins>
@@ -41,7 +41,7 @@
                 <include>**</include>
               </includes>
               <excludes>
-                <exclude></exclude>
+                <exclude />
               </excludes>
             </fileset>
           </filesets>
diff --git a/src/test/resources/unit/invalid-directory-test/pom.xml 
b/src/test/resources/unit/invalid-directory-test/pom.xml
index 5d35e78..a278e72 100644
--- a/src/test/resources/unit/invalid-directory-test/pom.xml
+++ b/src/test/resources/unit/invalid-directory-test/pom.xml
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <!--
     Licensed to the Apache Software Foundation (ASF) under one
     or more contributor license agreements.  See the NOTICE file
@@ -16,7 +17,6 @@
     specific language governing permissions and limitations
     under the License.
 -->
-
 <project>
   <build>
     <plugins>
diff --git a/src/test/resources/unit/locked-file-test/pom.xml 
b/src/test/resources/unit/locked-file-test/pom.xml
index 1f2f429..a677da4 100644
--- a/src/test/resources/unit/locked-file-test/pom.xml
+++ b/src/test/resources/unit/locked-file-test/pom.xml
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <!--
     Licensed to the Apache Software Foundation (ASF) under one
     or more contributor license agreements.  See the NOTICE file
@@ -16,7 +17,6 @@
     specific language governing permissions and limitations
     under the License.
 -->
-
 <project>
   <build>
     <plugins>
diff --git a/src/test/resources/unit/missing-directory-test/pom.xml 
b/src/test/resources/unit/missing-directory-test/pom.xml
index ec695d1..bcf3a24 100644
--- a/src/test/resources/unit/missing-directory-test/pom.xml
+++ b/src/test/resources/unit/missing-directory-test/pom.xml
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <!--
     Licensed to the Apache Software Foundation (ASF) under one
     or more contributor license agreements.  See the NOTICE file
@@ -16,7 +17,6 @@
     specific language governing permissions and limitations
     under the License.
 -->
-
 <project>
   <build>
     <plugins>
diff --git a/src/test/resources/unit/nested-clean-test/pom.xml 
b/src/test/resources/unit/nested-clean-test/pom.xml
index 5f9e755..77f95d3 100644
--- a/src/test/resources/unit/nested-clean-test/pom.xml
+++ b/src/test/resources/unit/nested-clean-test/pom.xml
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <!--
     Licensed to the Apache Software Foundation (ASF) under one
     or more contributor license agreements.  See the NOTICE file
@@ -16,7 +17,6 @@
     specific language governing permissions and limitations
     under the License.
 -->
-
 <project>
   <build>
     <plugins>

Reply via email to