Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] error can't determine superclass of missing type

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.


Back to the top