This content has been marked as final.
Show 2 replies
-
1. Excludes and scan tags ignored in Maven plugin
jesper.pedersen Jan 12, 2011 8:40 AM (in response to turtletsg)1 of 1 people found this helpfulOnly scanning .jar like files are supported atm. Let me know if you want to work on .class support.
-
2. Excludes and scan tags ignored in Maven plugin
turtletsg Jan 12, 2011 2:02 PM (in response to jesper.pedersen)Update: I have a fix to the exclusion issue: apparently "*" is not supported, so to exclude any jar, for example one ending in "example", like "this-example.jar", one would write:
<configuration>
<excludes>
<exclude>example.jar</exclude>
</excludes>
</configuration>
This is a bit counter-intuitive, but works.
Jesper- I would not have time to fix this at this point in time, but I do think it would be helpful to note that only JAR scanning is available at this time for future developers not to make the same assumption I did in the user manual or other such page.
Thanks.