Skip to content

Commit

Permalink
DATAJPA-883 - Fixed configuration of AspectJ Maven plugin.
Browse files Browse the repository at this point in the history
We now enforce the AspectJ plugin to run no matter what to work around bugs in the plugin in combination with bugs in the compiler plugin.

mojohaus/aspectj-maven-plugin#15
https://issues.apache.org/jira/browse/MCOMPILER-205
https://issues.apache.org/jira/browse/MCOMPILER-209
  • Loading branch information
trayanus1026 committed Apr 6, 2016
1 parent 09e70da commit 1fff9cf
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.6</version>
<version>1.8</version>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
Expand All @@ -476,6 +476,15 @@
</executions>
<configuration>
<verbose>true</verbose>
<!--
To workaround:
- https://issues.apache.org/jira/browse/MCOMPILER-205
- https://issues.apache.org/jira/browse/MCOMPILER-209
- https://github.com/mojohaus/aspectj-maven-plugin/issues/15
-->
<forceAjcCompile>true</forceAjcCompile>
<aspectLibraries>
<aspectLibrary>
<groupId>org.springframework</groupId>
Expand Down

0 comments on commit 1fff9cf

Please sign in to comment.