RE: aspectj multiproject

2004-08-27 Thread Carlos Sanchez
I think you can't weave into a war file. Check aspectj documentation. > -Original Message- > From: thorsten maus [mailto:[EMAIL PROTECTED] > Sent: Friday, August 27, 2004 7:29 PM > To: Maven Users List > Subject: RE: aspectj multiproject > > thanks carlos ..

RE: aspectj multiproject

2004-08-27 Thread thorsten maus
thanks carlos .. you were right .. it was more a problem of understanding the multiproject approach .. the execution of the maven goal reveals the following information: + | Building the foo-ear file | Memory: 2M/3M +---

RE: aspectj multiproject

2004-08-27 Thread Carlos Sanchez
want help. > -Original Message- > From: thorsten maus [mailto:[EMAIL PROTECTED] > Sent: Friday, August 27, 2004 4:26 PM > To: Maven Users List > Subject: RE: aspectj multiproject > > the main problem is that i have to put the activeJ tags > inside my foo-ear project.xml file. &

RE: aspectj multiproject

2004-08-27 Thread thorsten maus
ng like this to maven.xml? > > > > > > > > yep .. the first ten tries i simply took "aspectj" > .. > later on "aspectj:compile" > > would it help you to look through the project / > maven > / p

RE: aspectj multiproject

2004-08-27 Thread thorsten maus
maven.xml? > > > > > > > > yep .. the first ten tries i simply took "aspectj" > .. > later on "aspectj:compile" > > would it help you to look through the project / > maven > / property files

RE: aspectj multiproject

2004-08-27 Thread thorsten maus
ot;aspectj" .. later on "aspectj:compile" would it help you to look through the project / maven / property files ??? > > Regards > > Carlos Sanchez > A Coruña, Spain > > Oness Project > http://oness.sourceforge.net > > > > -Original Message- > &g

RE: aspectj multiproject

2004-08-27 Thread Carlos Sanchez
, Spain Oness Project http://oness.sourceforge.net > -Original Message- > From: thorsten maus [mailto:[EMAIL PROTECTED] > Sent: Friday, August 27, 2004 12:50 PM > To: Maven Users List > Subject: Re: aspectj multiproject > > sorry .. > i forgot to add the aspec

Re: aspectj multiproject

2004-08-27 Thread thorsten maus
sorry .. i forgot to add the aspect source .. public aspect LoggerAspect { pointcut traceMethods() : execution(* *.*(..)); before() : traceMethods() { Signature sig = thisJoinPointStaticPart.getSignature(); System.out.println(sig.getName()+" reached"); } this asp