Replies: 2 comments 1 reply
-
Do you have a stack trace? With the latest Byte Buddy, this should not happen. I'd try to update Byte Buddy. Maybe the project contains a Java 22 file for forward compatibility that is not normally loaded but parsed? |
Beta Was this translation helpful? Give feedback.
-
You can simply add depenedency management that pins Byte Buddy's version to the latest one. Then your problem should disappear. Hibernate scans all class files, so if you have a library with a multi-version jar containing Java 22 it will already fail. So either you identify and remove the library, or you update Byte Buddy. I recommend the latter. |
Beta Was this translation helpful? Give feedback.
-
I'm getting this error when running a Quarkus project with hibernate in IntelliJ IDE and the odd thing about this is that my project is set to Java 17 and the default for IntelliJ is also 17. I've checked every setting that I'm aware of, and everything is set for 17.
Beta Was this translation helpful? Give feedback.
All reactions