DATAJPA-602 - Upgraded AspectJ plugin to 1.6.

Upgraded to Maven AspectJ plugin in version 1.6 and set it up to use the aop.xml already contained in the project. This allows building the project against Spring 4.1 snapshots.
This commit is contained in:
Oliver Gierke
2014-09-01 15:48:49 +02:00
parent 95e5ff6d90
commit dd7ff130a5

View File

@@ -329,7 +329,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.3</version>
<version>1.6</version>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
@@ -360,8 +360,10 @@
<includes>
<include>**/domain/support/AuditingEntityListener.java</include>
</includes>
<complianceLevel>${source.level}</complianceLevel>
<source>${source.level}</source>
<target>${source.level}</target>
<xmlConfigured>aop.xml</xmlConfigured>
</configuration>
</plugin>