I ended up doing this:

Creating a file, say aspectjlint.properties
containing
cantFindType = ignore

Then, my aop.xml file was changed to:
<aspectj>
    <aspects>
        <aspect name="myapp.SampleAspect"/>
    </aspects>

    <weaver options="-XnoInline -Xlintfile:aspectjlint.properties">
        <include within="myapp..*"/>
    </weaver>
</aspectj>


This works with no additional warnings/errors.

I assume that the lintfile is additive, so that all of the other entries in
XlintDefault.properties (in the weaver jar) still apply.



--
View this message in context: 
http://aspectj.2085585.n4.nabble.com/error-can-t-determine-superclass-of-missing-type-tp4652184p4652193.html
Sent from the AspectJ - users mailing list archive at Nabble.com.
_______________________________________________
aspectj-users mailing list
[email protected]
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Reply via email to