Not sure about that, but i'm using the 'aspectj-maven-plugin'.

  <plugin>
   <groupId>org.codehaus.mojo</groupId>
   <artifactId>aspectj-maven-plugin</artifactId>
   <configuration>
       <ajdtBuildDefFile>ajbuild.properties</ajdtBuildDefFile>          
       <aspectLibraries>
         <aspectLibrary>
             <groupId></groupId>       
             <artifactId></artifactId>    //aspects to use.
         </aspectLibrary>
       </aspectLibraries>
       <weaveDependencies>
        <weaveDependency>
            <groupId></groupId>
            <artifactId></artifactId> //jar for aspects to weave into. 
        </weaveDependency>
       </weaveDependencies> 
   </configuration>
   <executions>
       <execution>
         <goals>
             <goal>compile</goal>
         </goals>
       </execution>
   </executions>
  </plugin>

Wim Deblauwe wrote:
> 
> Hi,
> 
> Looking at
> http://maven.apache.org/plugins/maven-compiler-plugin/non-javac-compilers.html,
> it mentions an "plexus-compiler-aspectj". Is this a replacement for the
> aspectj plugin?
> 
> regards,
> 
> Wim
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Aspectj-compilation--tf2600117s177.html#a7255429
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to