You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The sources jar has relocated the source files to the correct package folder, but it didn't modify the package declaration inside the packages.
It is package com.esotericsoftware.kryo; while it should be package com.esotericsoftware.kryo.kryo5;.
This is also the probable cause of an issue with IntelliJ. When both kryo 4 and the shaded kryo5 are used as dependencies, then Intellij has problems jumping to the correct sources.
To Reproduce
Download the jar and look at the sources and see the mismatch
Describe the bug
The sources jar has relocated the source files to the correct package folder, but it didn't modify the package declaration inside the packages.
It is
package com.esotericsoftware.kryo;
while it should bepackage com.esotericsoftware.kryo.kryo5;
.This is also the probable cause of an issue with IntelliJ. When both kryo 4 and the shaded kryo5 are used as dependencies, then Intellij has problems jumping to the correct sources.
To Reproduce
Download the jar and look at the sources and see the mismatch
Environment:
Additional context
This could be solved by modifying the sources before packaging them in the jar, e.g., https://stackoverflow.com/a/2196729/16358266.
The text was updated successfully, but these errors were encountered: