-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicate field name "ajc$tjp_0" #54
Comments
Hi Imochurad, the same thing happened to me, with a very similar AspectJ weaving scheme (i.e weaving already compiled classes produced in the Maven build during the compilation phase). In my case, the reason was that the classes to be woven (located in the
With this weaving scheme (as opposed to specifying classes to be woven by their source files with Adding:
to the Another (cleaner, but not tested yet) solution would be to have two distinct For the Ending up with something like: I hope this helps someone |
I am using aspectj-maven-plugin to weave my sources and tests.
I have a spring-boot app, in which I want to use compile-time weaving of my code to manage JDBC transactions. Here is my portion of the maven file:
After the compilation phase, the integration test starts running, but it fails immediately with:
How do I solve this issue?
The text was updated successfully, but these errors were encountered: