This is an automated email from the ASF dual-hosted git repository.
tballison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git
The following commit(s) were added to refs/heads/main by this push:
new 87284b429d TIKA-4768 -- include the .mvn dir in src.zip (#2918)
87284b429d is described below
commit 87284b429db997eaffa5fce841c06cb59e81c8f4
Author: Tim Allison <[email protected]>
AuthorDate: Tue Jun 30 13:06:59 2026 -0400
TIKA-4768 -- include the .mvn dir in src.zip (#2918)
---
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>