Is there an exclude example that someone can share with me. I have a couple
packages that I do not want to be included in my compile. I tried using
sourceModifications but it errors out with the following comment "At least
one of (classname|file|resource) is required". See my example below... Am I
doing this correctly?
<sourceModifications>
<sourceModification>
<excludes>
<exclude>com/abc/*</exclude>
<exclude>com/cdf/*</exclude>
</excludes>
</sourceModification>
</sourceModifications>
Brandon Goodin