Skip to content

Instantly share code, notes, and snippets.

@edpichler
Created July 2, 2012 20:40
Show Gist options
  • Save edpichler/3035571 to your computer and use it in GitHub Desktop.
Save edpichler/3035571 to your computer and use it in GitHub Desktop.
Maven Aspectj Plugin with compilance level
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.4</version><!--$NO-MVN-MAN-VER$ -->
<executions>
<execution>
<id>compile_with_aspectj</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<complianceLevel>1.5</complianceLevel>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment