This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch tighten-dist in repository https://gitbox.apache.org/repos/asf/storm.git
commit 6fc1a0e13d29c42b9c297b2f44b1bf795a7e530c Author: Richard Zowalla <[email protected]> AuthorDate: Tue Dec 17 08:12:51 2024 +0100 Remove "examples" from binary distribution --- examples/README.md | 4 ++++ storm-dist/binary/final-package/src/main/assembly/binary.xml | 8 +++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/examples/README.md b/examples/README.md new file mode 100644 index 000000000..03b1409fb --- /dev/null +++ b/examples/README.md @@ -0,0 +1,4 @@ +# Examples + +This directory contains examples for Apache Storm. +The source code is located [here](https://github.com/apache/storm/tree/master/examples). diff --git a/storm-dist/binary/final-package/src/main/assembly/binary.xml b/storm-dist/binary/final-package/src/main/assembly/binary.xml index d396a1f6c..d44f39d86 100644 --- a/storm-dist/binary/final-package/src/main/assembly/binary.xml +++ b/storm-dist/binary/final-package/src/main/assembly/binary.xml @@ -95,11 +95,9 @@ <fileSet> <directory>${project.basedir}/../../../examples</directory> <outputDirectory>examples</outputDirectory> - <excludes> - <exclude>**/target/**</exclude> - <exclude>**/dependency-reduced-pom.xml</exclude> - <exclude>**/*.iml</exclude> - </excludes> + <includes> + <include>README.*</include> + </includes> </fileSet> <fileSet> <directory>${project.basedir}/../../../storm-core/target/native/target/usr/local/bin/</directory>
