Is anyone having any luck with this plugin? It seems pretty broken to
me. I have scoured the web and can find little, if any documentation. It
also seems as if the guy at anydoby.com re-wrote the plugin to work?!

Here is what I have so far:

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>aspectj-maven-plugin</artifactId>
        <version>1.1</version>
        <executions>
          <execution>
            <goals>
               <goal>compile</goal>       <!-- use this goal to weave
all your main classes -->
               <goal>test-compile</goal>  <!-- use this goal to weave
all your test classes -->
            </goals>
          </execution>
        </executions>        
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
          <showWeaveInfo>true</showWeaveInfo>
          <verbose>true</verbose>
          <outxml>false</outxml>
          <proceedOnError>true</proceedOnError>
           <includes>
               <include>**/*.aj</include>
           </includes>
           <!--excludes>
               <exclude>**/logging/*.aj</exclude>
           </excludes-->
           <weaveDependencies>
              <weaveDependency>
                 <groupId>org.springframework</groupId>
                 <artifactId>spring-aspects</artifactId>
              </weaveDependency>
           </weaveDependencies>
           <aspectLibrarys>
            <aspectLibrary>
              <groupId>org.springframework</groupId>
              <artifactId>spring-aspects</artifactId>
            </aspectLibrary>
          </aspectLibrarys>
         </configuration>
      </plugin>


==========
Curtis Yanko
Application & Developer Infrastructure Services
Source->Build->Deploy


This e-mail, including attachments, may include confidential and/or
proprietary information, and may be used only by the person or entity
to which it is addressed. If the reader of this e-mail is not the intended
recipient or his or her authorized agent, the reader is hereby notified
that any dissemination, distribution or copying of this e-mail is
prohibited. If you have received this e-mail in error, please notify the
sender by replying to this message and delete this e-mail immediately.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to