RAT-354: Remove warning during integration test run that breaks the build with Maven 4
diff --git a/apache-rat-plugin/src/it/it4_RAT-168/pom.xml b/apache-rat-plugin/src/it/it4_RAT-168/pom.xml
index 471eeb3..c570d26 100644
--- a/apache-rat-plugin/src/it/it4_RAT-168/pom.xml
+++ b/apache-rat-plugin/src/it/it4_RAT-168/pom.xml
@@ -33,5 +33,15 @@
         </configuration>
       </plugin>
     </plugins>
+    <!-- RAT-354: prevent warning about missing version property of maven-clean-plugin -->
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-clean-plugin</artifactId>
+          <version>3.3.2</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
   </build>
 </project>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index a2669b5..a67c029 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -72,6 +72,9 @@
     </release>
     -->
     <release version="0.17-SNAPSHOT" date="xxxx-yy-zz" description="Current SNAPSHOT - release to be done">
+      <action issue="RAT-354" type="fix" dev="pottlinger" due-to="Guillaume Nodet">
+        Fix integration test failure with Maven 4 by adding a version property in integration test's pom.xml.
+      </action>
       <action issue="RAT-355" type="add" dev="claudenw">
         Optionally export XML configuration file as part of run. Added framework to inspect available licenses and matchers.
       </action>