Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.codehaus.mojo</groupId>
  3. <artifactId>aspectj-maven-plugin</artifactId>
  4. <configuration>
  5. <complianceLevel>1.6</complianceLevel>
  6. <aspectLibraries>
  7. <aspectLibrary>
  8. <groupId>org.springframework</groupId>
  9. <artifactId>spring-aspects</artifactId>
  10. </aspectLibrary>
  11. </aspectLibraries>
  12. </configuration>
  13. <executions>
  14. <execution>
  15. <goals>
  16. <goal>compile</goal>
  17. </goals>
  18. </execution>
  19. </executions>
  20. </plugin>
  21.  
  22. <dependency>
  23. <groupId>org.aspectj</groupId>
  24. <artifactId>aspectjweaver</artifactId>
  25. <version>1.8.2</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.aspectj</groupId>
  29. <artifactId>aspectjrt</artifactId>
  30. <version>1.8.2</version>
  31. </dependency>
  32.  
  33. [INFO] --- aspectj-maven-plugin:1.7:compile (default) @ pd ---
  34. [INFO] Showing AJC message detail for messages of types: [error, warning, fail]
  35. [WARNING] advice defined in org.springframework.scheduling.aspectj.AbstractAsyncExecutionAspect has not been applied [Xlint:adviceDidNotMatch]
  36. /Users/davea/.m2/repository/org/springframework/spring-aspects/3.2.11.RELEASE/spring-aspects-3.2.11.RELEASE.jar!org/springframework/scheduling/aspectj/AbstractAsyncExecutionAspect.class:58
  37.  
  38. [WARNING] advice defined in org.springframework.mock.staticmock.AnnotationDrivenStaticEntityMockingControl has not been applied [Xlint:adviceDidNotMatch]
  39. /Users/davea/Dropbox/workspace/pd/org/springframework/mock/staticmock/AnnotationDrivenStaticEntityMockingControl.aj:83
  40.  
  41. [WARNING] advice defined in org.springframework.mock.staticmock.AbstractMethodMockingControl has not been applied [Xlint:adviceDidNotMatch]
  42. /Users/davea/.m2/repository/org/springframework/spring-aspects/3.2.11.RELEASE/spring-aspects-3.2.11.RELEASE.jar!org/springframework/mock/staticmock/AbstractMethodMockingControl.class:190
  43.  
  44. [WARNING] advice defined in org.springframework.mock.staticmock.AbstractMethodMockingControl has not been applied [Xlint:adviceDidNotMatch]
  45. /Users/davea/.m2/repository/org/springframework/spring-aspects/3.2.11.RELEASE/spring-aspects-3.2.11.RELEASE.jar!org/springframework/mock/staticmock/AbstractMethodMockingControl.class:199
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement