This is an automated email from the ASF dual-hosted git repository. joshtynjala pushed a commit to branch examples/TDJ_localresources in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit fbe358b347f6e7750d17549c544c15bebc1962ba Author: Josh Tynjala <[email protected]> AuthorDate: Mon Mar 31 14:17:32 2025 -0700 pom.xml: fix rat-excludes.txt in examples being seemingly ignored if the with-examples profile isn't activated --- pom.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pom.xml b/pom.xml index 39f9faab85..7c5679bb75 100644 --- a/pom.xml +++ b/pom.xml @@ -357,6 +357,15 @@ <exclude>**/localfonts.ser</exclude> <exclude>**/macfonts.ser</exclude> <exclude>**/winfonts.ser</exclude> + + <!-- + if an example has a rat-excludes.txt file, it will actually be + ignored unless the with-examples profile has been activated. + + this excludes the example in that case, but rat-excludes.txt will + actually be used properly when with-examples is activated too! + --> + <exclude>examples/jewel/TourDeJewel/**</exclude> </excludes> </configuration> </plugin>
