Skip to content

Instantly share code, notes, and snippets.

@mickknutson
Created January 11, 2012 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mickknutson/1597074 to your computer and use it in GitHub Desktop.
Save mickknutson/1597074 to your computer and use it in GitHub Desktop.
aspectj-maven-plugin
<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>aspectj-maven-plugin</artifactId>
    <version>1.3.1</version>
    <executions>
        <execution>
            <phase>process-sources</phase>
            <goals>
                <goal>compile</goal>
                <goal>test-compile</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <complianceLevel>1.6</complianceLevel>
    </configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment