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

[maven-resources-plugin] 01/01: [MRRESOURCES-288] keep only useful content for IT

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

hboutemy pushed a commit to branch MRESOURCES-288
in repository https://gitbox.apache.org/repos/asf/maven-resources-plugin.git

commit bd6c8949520e49233919cf30101b6cd82194d5cb
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Tue Dec 27 10:54:19 2022 +0100

    [MRRESOURCES-288] keep only useful content for IT
---
 pom.xml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/pom.xml b/pom.xml
index 05ba2f2..a4154b6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -219,6 +219,13 @@ under the License.
                 <goals>
                   <goal>test-jar</goal>
                 </goals>
+                <configuration>
+                  <excludes><!-- exclude unused content: only itFilter Plexus component is used -->
+                    <exclude>unit/**/*</exclude><!-- non-reproducible content -->
+                    <exclude>org/apache/maven/plugins/resources/stub/*.class</exclude>
+                    <exclude>org/apache/maven/plugins/resources/*.class</exclude>
+                  </excludes>
+                </configuration>
               </execution>
             </executions>
           </plugin>