In my jboss-aop.xml, if I mark pointcuts using normal signature, like this:
<bind pointcut="execution(public void org.POJO->noop())">
<Interceptor class="org.SimpleInterceptor"/>
</bind>
aspects compile without a problem, but if I use annotation, like this
<bind pointcut="execution(void *->@org.Trace(..))">
<interceptor class="org.SimpleInterceptor"/>
</bind>
then there is no aop compile - no error, but the pointcut is not compiled. So - anybody knows if the maven jboss aop plugin supposed to be able to compile annotation marked pointcuts?