Below are the warnings I receive :
Description Resource Path Location Type
advice defined in org.springframework.mock.staticmock.AbstractMethodMockingControl has not been applied [Xlint:adviceDidNotMatch]
Location Type
advice defined in org.springframework.mock.staticmock.AnnotationDrivenStaticEntityMockingControl has not been applied [Xlint:adviceDidNotMatch]
Location Type
advice defined in org.springframework.orm.jpa.aspectj.JpaExceptionTranslatorAspect has not been applied [Xlint:adviceDidNotMatch]
Location Type
advice defined in org.springframework.scheduling.aspectj.AbstractAsyncExecutionAspect has not been applied [Xlint:adviceDidNotMatch]
I am not able to find a solution to get ride of these warnings. My current project pom file contains the below version :
JDK version = 1.7
roo version = 1.3.1.RELEASE
spring version=3.2.18.RELEASE
aspectj version = 1.8.1
aspectj-maven-plugin version = 1.4
Solution 1 Tried : I have tried updating the JDK version=1.8 and roo version = 2.0.0.RELEASE , but still came up with the same warning.
Solution 2 Tried:
I added <Xlint>adviceDidNotMatch=error,noGuardForLazyTjp=ignore</Xlint>
tag inside <configuration tag>
with respect to aspectj-maven-plugin. This didnt work either.
Any suggestions on other approaches to remove these Warnings.