You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2022/07/17 12:28:19 UTC

[axis-axis2-java-core] 04/08: Update the exclusions in bin-assembly.xml

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

veithen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git

commit 683c9fb2ba088951756218eec77e82a9e9b7315d
Author: Andreas Veithen <an...@gmail.com>
AuthorDate: Sun Jul 17 11:09:52 2022 +0000

    Update the exclusions in bin-assembly.xml
    
    This should make the build more reproducible
---
 modules/distribution/src/main/assembly/bin-assembly.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/modules/distribution/src/main/assembly/bin-assembly.xml b/modules/distribution/src/main/assembly/bin-assembly.xml
index 334b7dfd5b..c970484038 100755
--- a/modules/distribution/src/main/assembly/bin-assembly.xml
+++ b/modules/distribution/src/main/assembly/bin-assembly.xml
@@ -153,7 +153,10 @@
                 <include>yahoorestsearch/**/*</include>            
             </includes>
             <excludes>
-                <exclude>**/*.iml</exclude>
+                <!-- The release process builds the binary distribution from a clean checkout,
+                     but we still need to exclude files that are generated by the build
+                     (.settings is generated by eclipse-settings-maven-plugin). -->
+                <exclude>**/.settings/</exclude>
                 <exclude>**/target/</exclude>
             </excludes>
         </fileSet>