I have a few Interceptors that seem to work fine with load time weaving.  I'd 
like to shift to compile time weaving using the maven plugin.  I have the 
following defined in my pom.xml file.  When I run my application I am not able 
to see the log statements generated by the interceptors.  I can see that the 
compiled classes have be instrumented.  Any help would be greatly appreciated!

Thanks,

John

    <build>
  |         <plugins>
  |             <plugin>
  |                 <groupId>org.jboss.maven.plugins</groupId>
  |                 <artifactId>maven-jbossaop-plugin</artifactId>
  |                 <version>1.0.0.GA</version>
  |                 <executions>
  |                     <execution>
  |                         <id>compile</id>
  |                         <configuration>
  |                             <verbose>true</verbose>
  |                             <suppress>false</suppress>
  |                             
<includeProjectDependency>true</includeProjectDependency>
  |                             <aoppaths>
  |                                 
<aoppath>src/main/resources/jboss-aop.xml</aoppath>
  |                             </aoppaths>
  |                             <properties>
  |                                 <property>
  |                                     <name>jboss.aop.verbose</name>
  |                                     <value>true</value>
  |                                 </property>
  |                             </properties>
  |                         </configuration>
  |                         <goals>
  |                             <goal>compile</goal>
  |                         </goals>
  |                     </execution>
  |                 </executions>
  |             </plugin>
  |         </plugins>
  |     </build>
  | 

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

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4214929
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to