This is an automated email from the ASF dual-hosted git repository.
fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/master by this push:
new 9d839a5 Don't exclude the ide support sample files for idea when
packaging the src for a release
9d839a5 is described below
commit 9d839a547d3b3f0da5b7e10c77c4975b9d3a1b31
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 c97a945..524e049 100644
--- a/build.xml
+++ b/build.xml
@@ -2065,7 +2065,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]