Wie benutzt man aspectj-maven-plugin

Ich bin ein Neuling bei AspectJ und Maven.

Ich versuche, mein Projekt mit dem aspectj-maven-plugin zu erstellen, aber es funktioniert nicht. Ich bin nur den Schritten gefolgtAspektJ In Aktion 2nd Auflage.

<build>
    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>aspectj-maven-plugin</artifactId>
            <executions>
                <execution>
                    <goals>
                        <goal>compile</goal>
                        <goal>test-compile</goal>
                    </goals>

                    <configuration>
                        <source>1.5</source>
                        <target>1.5</target>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

Hier ist die Fehlermeldung, die ich auf dem bekomme<execution> Linie:

Plugin-Ausführung wird von der Lifecycle-Konfiguration nicht abgedeckt: org.codehaus.mojo: aspectj-maven-plugin: 1.4: compile (Ausführung: default, Phase: compile)

Ich benutze JDK6 und Apache Maven 3.0.4.

Antworten auf die Frage(3)

Ihre Antwort auf die Frage