Okay!
So, my build.xml:

  | <?xml version="1.0" encoding="UTF-8"?>
  | <project name="premieressaijboss" default="compile">
  |     <target name="prepare">
  |             <path id="javassist.classpath">
  |                     <pathelement path="lib/javassist.jar"/>
  |             </path>
  |             <path id="trove.classpath">
  |                     <pathelement path="lib/trove.jar"/>
  |             </path>
  |             <path id="concurrent.classpath">
  |                     <pathelement path="lib/concurrent.jar"/>
  |             </path>
  |             <path id="jboss.common.classpath">
  |                     <pathelement path="lib/jboss-common.jar"/>
  |             </path>
  |             <path id="jboss.aop.classpath">
  |                     <pathelement path="lib/jboss-aop.jar"/>
  |             </path>
  |             <path id="qdox.classpath">
  |                     <pathelement path="lib/qdox.jar"/>
  |             </path>
  |             <path id="classpath">
  |                     <path refid="javassist.classpath"/>
  |                     <path refid="trove.classpath"/>
  |                     <path refid="jboss.aop.classpath"/>
  |                     <path refid="jboss.common.classpath"/>
  |                     <path refid="concurrent.classpath"/>
  |                     <path refid="qdox.classpath"/>
  |             </path>
  |             <taskdef name="annotationc" 
classname="org.jboss.aop.ant.AnnotationC" classpathref="jboss.aop.classpath"/>
  |     </target>
  | 
  |     <target name="compile" depends="prepare">
  |             <javac srcdir="." destdir="." debug="on" deprecation="on"
  |          optimize="off"
  |          includes="**">
  |             <classpath refid="classpath"/>
  |          </javac>
  | <annotationc compilerclasspathref="classpath" classpath="." 
bytecode="true">        
  | <src path="."/>
  | </annotationc>
  | </target>
  | </project>

and my jboss-aop.xml:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> 
  | <aop>
  |  <bind pointcut="execution(* *->@toAdvice(..))">
  |   <interceptor class="jboss.aop1.HelloInterceptor" /> 
  |  </bind>
  |  <bind pointcut="all(@aTracer)">
  |   <interceptor class="jboss.aop2.Trace" /> 
  |  </bind>
  | </aop>

Something wrong with them?
thanks in advance

ps: I'm using JBossIDE-AOP-Developer-1.1.0 with Eclipse with JDK 1.5

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3932061#3932061

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3932061


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to