We have more or less big project with something like 150+ entities, after enabling the_ hibernate-enhance-maven-plugin some of the compiled/enhanced classes seems to be broken as a result we getting. _java.lang.ClassFormatError: Duplicate interface name in class file com/example/Test_
{code: java xml } <configuration> <failOnError>true</failOnError> <enableLazyInitialization>false</enableLazyInitialization> <enableDirtyTracking>true</enableDirtyTracking> <enableAssociationManagement>false</enableAssociationManagement> <enableExtendedEnhancement>false</enableExtendedEnhancement> </configuration> {code}
_java.lang.ClassFormatError: Duplicate interface name in class file com/example/Test_
To be honest I'm unable to create a smaller version of the project so I can share it with you. It would be great if you can give me direction where the problem may be, or where to debug :) |
|