What is the full contents of your aop.xml?
Also, double check to make sure that it exists in the packaged and exported jar.

On Mon, Mar 21, 2011 at 1:48 PM, Davidosky <davide.arest...@gmail.com> wrote:
> maybe the problem is i have used an annotation for my aspect? this is my
> aspect:
>
> package aspects;
>
> public aspect Logging {
>
>        public pointcut thisLog() : execution(@Log * *.*(..));
>
>        before() : thisLog() {
>                System.out.println("CIAO");
>        }
> }
>
> how can be the aop.xml?
>
> --
> View this message in context: 
> http://aspectj.2085585.n4.nabble.com/AspectJ-PDE-export-problems-tp3387024p3394722.html
> Sent from the AspectJ - users mailing list archive at Nabble.com.
> _______________________________________________
> aspectj-users mailing list
> aspectj-users@eclipse.org
> https://dev.eclipse.org/mailman/listinfo/aspectj-users
>
_______________________________________________
aspectj-users mailing list
aspectj-users@eclipse.org
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Reply via email to