This is an automated email from the ASF dual-hosted git repository.
fschumacher pushed a commit to branch 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/8.5.x by this push:
new fb01e55 Don't exclude the ide support sample files for idea when
packaging the src for a release
fb01e55 is described below
commit fb01e550dec9c83682493a4204739577caba6367
Author: Felix Schumacher <[email protected]>
AuthorDate: Sat Mar 16 14:43:50 2019 +0100
Don't exclude the ide support sample files for idea when packaging the src
for a release
---
build.xml | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/build.xml b/build.xml
index c1cfc61..2a7ea9c 100644
--- a/build.xml
+++ b/build.xml
@@ -2004,7 +2004,13 @@ Apache Tomcat ${version} native binaries for Win64
AMD64/EMT64 platform.
-->
<filename name="**/build.properties"/>
<filename name="**/mvn.properties"/>
- <filename name="**/*.iml" />
+ <and>
+ <!-- Don't exclude the ide support sample files for idea -->
+ <filename name="**/*.iml" />
+ <not>
+ <filename name="res/ide-support/idea/**" />
+ </not>
+ </and>
<filename name="**/*.asc" />
<filename name="**/*.tmp" />
<filename name="**/*.jj" />
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]