Added an aop.xml to only compile explicitly listed aspects in the cross-store module. This is needed as Spring 4.1 includes a new aspect for JavaEE 7 JCache support that has optional dependencies which we don't have in the classpath. Trying to compile all aspects contained in spring-aspects will result in ClassNotFoundExceptions for the aspects with missing dependencies.
7 lines
278 B
XML
7 lines
278 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<aspectj>
|
|
<aspects>
|
|
<aspect name="org.springframework.beans.factory.aspectj.AnnotationBeanConfigurerAspect" />
|
|
<aspect name="org.springframework.data.mongodb.crossstore.MongoDocumentBacking" />
|
|
</aspects>
|
|
</aspectj> |