Excluding Packages in ASDoc Builds Using ANT

Written by

I recently had an ANT build.xml script and I ran into a small issue with excluding directories of classes. ASDoc won’t allow you (as far as I can see) to exclude a directory of classes, only a defined list of classes which wasn’t what I was aiming for. I found this dudes post which offered a pretty cool solution to create a fileset of classes to exclude, strip the document type attribute and then use the property id as reference to pass to the

1
-exclude-classes

argument in asdoc. I will be uploading an application shortly with this fix in place to use as a reference.

UPDATE

Here is that application mentioned above

Comments