Hi, I just upgraded a project from 3.0.0.RC1 to 3.0.1.RELEASE, and I get some weird aspectj errors.
Basically, this repeats over and over for a whole bunch of classes in the system:
I made sure to upgrade maven to use 1.6.7 instead of 1.6.5 of both the aspectj libraries. Is there anything else I should be aware of?Code:[ERROR] can't determine annotations of missing type javax.persistence.Entity when weaving type jobprep.web.controllers.admin.OpenEndedQuestionsController when weaving classes when weaving when batch building BuildConfig[null] #Files=164 AopXmls=#0 [Xlint:cantFindType]
This is maven code I'm using:
Code:<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>aspectj-maven-plugin</artifactId> <version>1.3</version> <configuration> <complianceLevel>1.5</complianceLevel> <aspectLibraries> <aspectLibrary> <groupId>org.springframework</groupId> <artifactId>spring-aspects</artifactId> </aspectLibrary> </aspectLibraries> </configuration> <executions> <execution> <goals> <goal>compile</goal> <goal>test-compile</goal> </goals> </execution> </executions> </plugin>


Reply With Quote