This is an automated email from the ASF dual-hosted git repository. tballison pushed a commit to branch TIKA-4768-include-mvn-dir in repository https://gitbox.apache.org/repos/asf/tika.git
commit 69f6093413474865d457800ad862e2f9ee0f72e7 Author: tallison <[email protected]> AuthorDate: Tue Jun 30 07:10:47 2026 -0400 TIKA-4768 -- include the .mvn dir in src.zip --- assembly.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/assembly.xml b/assembly.xml index f69a4af623..edacf9e995 100644 --- a/assembly.xml +++ b/assembly.xml @@ -31,5 +31,13 @@ <exclude>**/*.releaseBackup</exclude> </excludes> </fileSet> + <!-- Re-add .mvn (dropped by **/.*/** above); required to build the source release (TIKA-4768). --> + <fileSet> + <directory>${project.basedir}/.mvn</directory> + <outputDirectory>.mvn</outputDirectory> + <excludes> + <exclude>.develocity/**</exclude> + </excludes> + </fileSet> </fileSets> </assembly>
